Skip to content

Commit

Permalink
Fix Python versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed May 14, 2020
1 parent c03cb31 commit 5ed75ca
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CHANGES
4.5 (unreleased)
----------------

- Nothing changed yet.
- Add support for Python 3.8.


4.4 (2020-05-14)
Expand Down
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def read(*rnames):
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
Expand All @@ -76,6 +77,14 @@ def read(*rnames):
package_dir={'': 'src'},
namespace_packages=['zope', 'zope.app'],
extras_require=dict(test=TEST_REQUIREMENTS),
python_requires=', '.join([
'>=2.7',
'!=3.0.*',
'!=3.1.*',
'!=3.2.*',
'!=3.3.*',
'!=3.4.*',
]),
install_requires=[
'six',
'zope.interface',
Expand Down

0 comments on commit 5ed75ca

Please sign in to comment.