File tree 5 files changed +32
-2
lines changed
5 files changed +32
-2
lines changed Original file line number Diff line number Diff line change @@ -22,3 +22,19 @@ fail-under = 90
22
22
23
23
[coverage-run ]
24
24
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
+ ]
Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ Changelog
4
4
4.1 (unreleased)
5
5
----------------
6
6
7
- - Nothing changed yet.
7
+ - Add support for Python 3.8, 3.9, 3.10.
8
+
9
+ - Drop support for Python 3.4.
8
10
9
11
10
12
4.0 (2018-11-27)
Original file line number Diff line number Diff line change @@ -7,3 +7,5 @@ include buildout.cfg
7
7
include tox.ini
8
8
9
9
recursive-include src *.py
10
+ recursive-include src *.po
11
+ recursive-include src *.pot
Original file line number Diff line number Diff line change @@ -10,6 +10,13 @@ doctests = 1
10
10
ignore =
11
11
.editorconfig
12
12
.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
13
20
14
21
[isort]
15
22
force_single_line = True
Original file line number Diff line number Diff line change 26
26
'License :: OSI Approved :: BSD License' ,
27
27
'Operating System :: OS Independent' ,
28
28
'Programming Language :: Python' ,
29
+ 'Programming Language :: Python :: 2' ,
29
30
'Programming Language :: Python :: 2.7' ,
30
31
'Programming Language :: Python :: 3' ,
31
- 'Programming Language :: Python :: 3.4' ,
32
32
'Programming Language :: Python :: 3.5' ,
33
33
'Programming Language :: Python :: 3.6' ,
34
34
'Programming Language :: Python :: 3.7' ,
35
+ 'Programming Language :: Python :: 3.8' ,
36
+ 'Programming Language :: Python :: 3.9' ,
37
+ 'Programming Language :: Python :: 3.10' ,
35
38
'Programming Language :: Python :: Implementation :: CPython' ,
36
39
'Programming Language :: Python :: Implementation :: PyPy' ,
37
40
'Topic :: Software Development :: Internationalization' ,
You can’t perform that action at this time.
0 commit comments