Skip to content

Commit 3867341

Browse files
authored
remove jython support (celery#4776)
* remove jython related stuff * remove jython related stuff
1 parent 5a403a5 commit 3867341

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

requirements/jython.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ def _pyimp():
3838
PY26_OR_LESS = sys.version_info < (2, 7)
3939
PY3 = sys.version_info[0] == 3
4040
PY33_OR_LESS = PY3 and sys.version_info < (3, 4)
41-
JYTHON = sys.platform.startswith('java')
4241
PYPY_VERSION = getattr(sys, 'pypy_version_info', None)
4342
PYPY = PYPY_VERSION is not None
4443
PYPY24_ATLEAST = PYPY_VERSION and PYPY_VERSION >= (2, 4)
@@ -168,8 +167,6 @@ def extras(*p):
168167

169168
def install_requires():
170169
"""Get list of requirements required for installation."""
171-
if JYTHON:
172-
return reqs('default.txt') + reqs('jython.txt')
173170
return reqs('default.txt')
174171

175172

0 commit comments

Comments
 (0)