Skip to content

Commit e6746e4

Browse files
committed
v1.0.5
1 parent 242df45 commit e6746e4

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
## Changelog
22

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+
310
### v1.0.4
411

512
- add cPython 3.9 interpreter testing

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ def version_read():
5454
packages=find_packages("lib"),
5555
package_dir={"": "lib"},
5656
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+
},
5860
keywords="",
5961
include_package_data=True,
6062
classifiers=[
@@ -67,5 +69,6 @@ def version_read():
6769
"Programming Language :: Python :: 3.6",
6870
"Programming Language :: Python :: 3.7",
6971
"Programming Language :: Python :: 3.8",
72+
"Programming Language :: Python :: 3.9",
7073
],
7174
)

0 commit comments

Comments
 (0)