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>2018-08-24 15:58:52 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-08-29 19:03:57 +0300
commit9412bd76b7f5fdf0adc231ef8130e45bda130164 (patch)
tree2aff21dd55f126b1f4dc6c102f6a86e76eb577d2 /setup.py
parent92bd804b898a7ec2406f7abe1d451c8012e86097 (diff)
Drop python 2.7 and 3.4 support
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py19
1 files changed, 5 insertions, 14 deletions
diff --git a/setup.py b/setup.py
index b6b3bc259..b9ed8054a 100644
--- a/setup.py
+++ b/setup.py
@@ -11,8 +11,8 @@ import sphinx
with open('README.rst') as f:
long_desc = f.read()
-if sys.version_info < (2, 7) or (3, 0) <= sys.version_info < (3, 4):
- print('ERROR: Sphinx requires at least Python 2.7 or 3.4 to run.')
+if sys.version_info < (3, 5):
+ print('ERROR: Sphinx requires at least Python 3.5 to run.')
sys.exit(1)
install_requires = [
@@ -35,9 +35,6 @@ extras_require = {
':sys_platform=="win32"': [
'colorama>=0.3.5',
],
- ':python_version<"3.5"': [
- 'typing'
- ],
'websupport': [
'sqlalchemy>=0.9',
'whoosh>=2.0',
@@ -49,11 +46,6 @@ extras_require = {
'html5lib',
'flake8>=3.5.0',
'flake8-import-order',
- ],
- 'test:python_version<"3"': [
- 'enum34',
- ],
- 'test:python_version>="3"': [
'mypy',
'typed_ast',
],
@@ -195,12 +187,11 @@ setup(
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
+ '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',
'Programming Language :: Python :: Implementation :: PyPy',
'Framework :: Setuptools Plugin',
@@ -235,7 +226,7 @@ setup(
'build_sphinx = sphinx.setup_command:BuildDoc',
],
},
- python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
+ python_requires=">=3.5",
install_requires=install_requires,
extras_require=extras_require,
cmdclass=cmdclass,