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 Jan 2, 2020
1 parent c9e09b6 commit f7b3b7f
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 f7b3b7f

Please sign in to comment.