Skip to content

Commit

Permalink
v1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissimpkins committed Nov 16, 2020
1 parent 242df45 commit e6746e4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Changelog

### v1.0.5

- add Python 3.9 classifier to `setup.py`
- minor `setup.py` source formatting updates
- update fonttools dependency to v4.17.0
- update gitpython dependency to v3.1.11

### v1.0.4

- add cPython 3.9 interpreter testing
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ def version_read():
packages=find_packages("lib"),
package_dir={"": "lib"},
install_requires=["gitpython", "fonttools"],
entry_points={"console_scripts": ["font-v = fontv.app:main"],},
entry_points={
"console_scripts": ["font-v = fontv.app:main"],
},
keywords="",
include_package_data=True,
classifiers=[
Expand All @@ -67,5 +69,6 @@ def version_read():
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)

0 comments on commit e6746e4

Please sign in to comment.