mirror of https://github.com/celery/kombu.git
parent
32633554ac
commit
ddb0c8ffad
2
setup.py
2
setup.py
|
@ -70,7 +70,6 @@ else:
|
||||||
|
|
||||||
# -*- Installation Requires -*-
|
# -*- Installation Requires -*-
|
||||||
py_version = sys.version_info
|
py_version = sys.version_info
|
||||||
is_jython = sys.platform.startswith('java')
|
|
||||||
is_pypy = hasattr(sys, 'pypy_version_info')
|
is_pypy = hasattr(sys, 'pypy_version_info')
|
||||||
|
|
||||||
|
|
||||||
|
@ -149,7 +148,6 @@ setup(
|
||||||
'Programming Language :: Python :: 2',
|
'Programming Language :: Python :: 2',
|
||||||
'Programming Language :: Python :: Implementation :: CPython',
|
'Programming Language :: Python :: Implementation :: CPython',
|
||||||
'Programming Language :: Python :: Implementation :: PyPy',
|
'Programming Language :: Python :: Implementation :: PyPy',
|
||||||
'Programming Language :: Python :: Implementation :: Jython',
|
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'Topic :: Communications',
|
'Topic :: Communications',
|
||||||
'Topic :: System :: Distributed Computing',
|
'Topic :: System :: Distributed Computing',
|
||||||
|
|
3
tox.ini
3
tox.ini
|
@ -19,7 +19,7 @@ deps=
|
||||||
-r{toxinidir}/requirements/test.txt
|
-r{toxinidir}/requirements/test.txt
|
||||||
-r{toxinidir}/requirements/test-ci.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
|
apicheck,linkcheck: -r{toxinidir}/requirements/docs.txt
|
||||||
flake8,flakeplus,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt
|
flake8,flakeplus,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt
|
||||||
|
@ -34,7 +34,6 @@ basepython =
|
||||||
3.6: python3.6
|
3.6: python3.6
|
||||||
3.7: python3.7
|
3.7: python3.7
|
||||||
pypy: pypy
|
pypy: pypy
|
||||||
jython: jython
|
|
||||||
|
|
||||||
[testenv:apicheck]
|
[testenv:apicheck]
|
||||||
commands = pip install -U -r{toxinidir}/requirements/dev.txt
|
commands = pip install -U -r{toxinidir}/requirements/dev.txt
|
||||||
|
|
Loading…
Reference in New Issue