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:
authorAdam Turner <9087854+AA-Turner@users.noreply.github.com>2022-09-09 05:16:08 +0300
committerAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-09-09 06:19:11 +0300
commit75f25bab49b9c929c270eff209378fa9e7b4cc1e (patch)
tree1a10a6be0d219fc3cded0e7cd0d37d9a61a4dafa
parent454ced9cc1dff4ce119e6a267642994b11c842c2 (diff)
Clean setup.py
-rw-r--r--setup.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/setup.py b/setup.py
index 930a20fcb..f481e16af 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,3 @@
-import sys
-
from setuptools import find_packages, setup
import sphinx
@@ -7,10 +5,6 @@ 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.')
- sys.exit(1)
-
install_requires = [
'sphinxcontrib-applehelp',
'sphinxcontrib-devhelp',
@@ -31,7 +25,6 @@ install_requires = [
]
extras_require = {
- # Environment Marker works for wheel 0.24 or later
':sys_platform=="win32"': [
'colorama>=0.3.5',
],