diff options
author | Asif Saif Uddin (Auvi) <auvipy@gmail.com> | 2018-09-05 18:42:04 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-05 18:42:04 +0600 |
commit | ddb0c8ffadf2822480e2cbacf0c3ebc3167d9536 (patch) | |
tree | a2b9357f56727be45e8c1c253540169f406e54a4 | |
parent | 32633554ac0a5f15f66c648b952d14cc1eab14b2 (diff) | |
download | kombu-ddb0c8ffadf2822480e2cbacf0c3ebc3167d9536.tar.gz |
Jython (#915)
* drop jython from tox
* drop jython from setup.py
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | tox.ini | 3 |
2 files changed, 1 insertions, 4 deletions
@@ -70,7 +70,6 @@ else: # -*- Installation Requires -*- py_version = sys.version_info -is_jython = sys.platform.startswith('java') is_pypy = hasattr(sys, 'pypy_version_info') @@ -149,7 +148,6 @@ setup( 'Programming Language :: Python :: 2', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', - 'Programming Language :: Python :: Implementation :: Jython', 'Intended Audience :: Developers', 'Topic :: Communications', 'Topic :: System :: Distributed Computing', @@ -19,7 +19,7 @@ deps= -r{toxinidir}/requirements/test.txt -r{toxinidir}/requirements/test-ci.txt - 2.7,pypy,jython,cov: -r{toxinidir}/requirements/test-ci-py2.txt + 2.7,pypy,cov: -r{toxinidir}/requirements/test-ci-py2.txt apicheck,linkcheck: -r{toxinidir}/requirements/docs.txt flake8,flakeplus,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt @@ -34,7 +34,6 @@ basepython = 3.6: python3.6 3.7: python3.7 pypy: pypy - jython: jython [testenv:apicheck] commands = pip install -U -r{toxinidir}/requirements/dev.txt |