Skip to content

Commit

Permalink
setup: Claim support for and allow installation with Python 3.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
neiljp committed Dec 19, 2019
1 parent e9b7a56 commit 723f9fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,11 @@ def long_description():
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
python_requires='>=3.5, <3.8',
python_requires='>=3.5, <=3.8',
keywords='',
packages=find_packages(exclude=['tests', 'tests.*']),
zip_safe=True,
Expand Down

0 comments on commit 723f9fd

Please sign in to comment.