We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a403a5 commit 3867341Copy full SHA for 3867341
requirements/jython.txt
setup.py
@@ -38,7 +38,6 @@ def _pyimp():
38
PY26_OR_LESS = sys.version_info < (2, 7)
39
PY3 = sys.version_info[0] == 3
40
PY33_OR_LESS = PY3 and sys.version_info < (3, 4)
41
-JYTHON = sys.platform.startswith('java')
42
PYPY_VERSION = getattr(sys, 'pypy_version_info', None)
43
PYPY = PYPY_VERSION is not None
44
PYPY24_ATLEAST = PYPY_VERSION and PYPY_VERSION >= (2, 4)
@@ -168,8 +167,6 @@ def extras(*p):
168
167
169
def install_requires():
170
"""Get list of requirements required for installation."""
171
- if JYTHON:
172
- return reqs('default.txt') + reqs('jython.txt')
173
return reqs('default.txt')
174
175
0 commit comments