diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -155,6 +155,7 @@ setup(name='zope.security', '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', 'Natural Language :: English', @@ -196,7 +197,8 @@ setup(name='zope.security', ], 'test': TESTS_REQUIRE, 'docs': [ - 'Sphinx < 2', # Version 2.0+ only supports Python 3.5+ + 'Sphinx < 2; python_version < "3"', + 'Sphinx >= 2; python_version >= "3"', 'repoze.sphinx.autointerface', ], }, |
