summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 930a20fcb..9ac40e821 100644
--- a/setup.py
+++ b/setup.py
@@ -7,8 +7,8 @@ import sphinx
with open('README.rst', encoding='utf-8') as f:
long_desc = f.read()
-if sys.version_info < (3, 6):
- print('ERROR: Sphinx requires at least Python 3.6 to run.')
+if sys.version_info < (3, 7):
+ print('ERROR: Sphinx requires at least Python 3.7 to run.')
sys.exit(1)
install_requires = [
@@ -88,7 +88,6 @@ setup(
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
- 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
@@ -130,7 +129,7 @@ setup(
'build_sphinx = sphinx.setup_command:BuildDoc',
],
},
- python_requires=">=3.6",
+ python_requires=">=3.7",
install_requires=install_requires,
extras_require=extras_require,
)