File tree 2 files changed +11
-1
lines changed 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
3
+ ### v1.0.5
4
+
5
+ - add Python 3.9 classifier to ` setup.py `
6
+ - minor ` setup.py ` source formatting updates
7
+ - update fonttools dependency to v4.17.0
8
+ - update gitpython dependency to v3.1.11
9
+
3
10
### v1.0.4
4
11
5
12
- add cPython 3.9 interpreter testing
Original file line number Diff line number Diff line change @@ -54,7 +54,9 @@ def version_read():
54
54
packages = find_packages ("lib" ),
55
55
package_dir = {"" : "lib" },
56
56
install_requires = ["gitpython" , "fonttools" ],
57
- entry_points = {"console_scripts" : ["font-v = fontv.app:main" ],},
57
+ entry_points = {
58
+ "console_scripts" : ["font-v = fontv.app:main" ],
59
+ },
58
60
keywords = "" ,
59
61
include_package_data = True ,
60
62
classifiers = [
@@ -67,5 +69,6 @@ def version_read():
67
69
"Programming Language :: Python :: 3.6" ,
68
70
"Programming Language :: Python :: 3.7" ,
69
71
"Programming Language :: Python :: 3.8" ,
72
+ "Programming Language :: Python :: 3.9" ,
70
73
],
71
74
)
You can’t perform that action at this time.
0 commit comments