Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-03-07 04:04:16 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-03-07 12:06:39 +0300
commit2bd7c19c7bcc28e0058256de8f319551b6442144 (patch)
treeecf572583913f383aacb496cefb3f35e6d4d64e9 /setup.py
parent60fbf4105ceeee588ac6f9e700ba529bfaaa5e5b (diff)
Drop python 3.5 support
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 bb6273033..8c1afb340 100644
--- a/setup.py
+++ b/setup.py
@@ -10,8 +10,8 @@ import sphinx
with open('README.rst') as f:
long_desc = f.read()
-if sys.version_info < (3, 5):
- print('ERROR: Sphinx requires at least Python 3.5 to run.')
+if sys.version_info < (3, 6):
+ print('ERROR: Sphinx requires at least Python 3.6 to run.')
sys.exit(1)
install_requires = [
@@ -198,7 +198,6 @@ setup(
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
- 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
@@ -238,7 +237,7 @@ setup(
'build_sphinx = sphinx.setup_command:BuildDoc',
],
},
- python_requires=">=3.5",
+ python_requires=">=3.6",
install_requires=install_requires,
extras_require=extras_require,
cmdclass=cmdclass,