Skip to content

Commit d69f3c0

Browse files
author
Michael Howitz
committed
Add support for Python 3.8, 3.9, 3.10; drop support for Python 3.4.
1 parent 13189df commit d69f3c0

File tree

5 files changed

+32
-2
lines changed

5 files changed

+32
-2
lines changed

Diff for: .meta.toml

+16
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,19 @@ fail-under = 90
2222

2323
[coverage-run]
2424
source = "pythongettext"
25+
26+
[manifest]
27+
additional-rules = [
28+
"recursive-include src *.po",
29+
"recursive-include src *.pot",
30+
]
31+
32+
[check-manifest]
33+
ignore-bad-ideas = [
34+
"src/pythongettext/tests/test.mo",
35+
"src/pythongettext/tests/test2.mo",
36+
"src/pythongettext/tests/test3.mo",
37+
"src/pythongettext/tests/test6.mo",
38+
"src/pythongettext/tests/test_empty.mo",
39+
"src/pythongettext/tests/test_unicode_bom.mo",
40+
]

Diff for: CHANGES.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ Changelog
44
4.1 (unreleased)
55
----------------
66

7-
- Nothing changed yet.
7+
- Add support for Python 3.8, 3.9, 3.10.
8+
9+
- Drop support for Python 3.4.
810

911

1012
4.0 (2018-11-27)

Diff for: MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ include buildout.cfg
77
include tox.ini
88

99
recursive-include src *.py
10+
recursive-include src *.po
11+
recursive-include src *.pot

Diff for: setup.cfg

+7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ doctests = 1
1010
ignore =
1111
.editorconfig
1212
.meta.toml
13+
ignore-bad-ideas =
14+
src/pythongettext/tests/test.mo
15+
src/pythongettext/tests/test2.mo
16+
src/pythongettext/tests/test3.mo
17+
src/pythongettext/tests/test6.mo
18+
src/pythongettext/tests/test_empty.mo
19+
src/pythongettext/tests/test_unicode_bom.mo
1320

1421
[isort]
1522
force_single_line = True

Diff for: setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,15 @@
2626
'License :: OSI Approved :: BSD License',
2727
'Operating System :: OS Independent',
2828
'Programming Language :: Python',
29+
'Programming Language :: Python :: 2',
2930
'Programming Language :: Python :: 2.7',
3031
'Programming Language :: Python :: 3',
31-
'Programming Language :: Python :: 3.4',
3232
'Programming Language :: Python :: 3.5',
3333
'Programming Language :: Python :: 3.6',
3434
'Programming Language :: Python :: 3.7',
35+
'Programming Language :: Python :: 3.8',
36+
'Programming Language :: Python :: 3.9',
37+
'Programming Language :: Python :: 3.10',
3538
'Programming Language :: Python :: Implementation :: CPython',
3639
'Programming Language :: Python :: Implementation :: PyPy',
3740
'Topic :: Software Development :: Internationalization',

0 commit comments

Comments
 (0)