Merge pull request #1392 from gevent/issue1180
Add pyproject.toml
Showing
ci-requirements.txt
deleted
100644 → 0
setuptools | ||
wheel | ||
# Python 3.7 requires at least Cython 0.27.3. | ||
# 0.28 is faster, and (important!) lets us specify the target module | ||
# name to be created so that we can have both foo.py and _foo.so | ||
# at the same time. 0.29 fixes some issues with Python 3.7, | ||
# and adds the 3str mode for transition to Python 3. | ||
Cython >= 0.29.6 | ||
# Python 3.7 requires at least 0.4.14, which is ABI incompatible with earlier | ||
greenlet>=0.4.14 ; platform_python_implementation == "CPython" | ||
pylint>=1.8.0 ; python_version < "3.4" | ||
# pylint 2 needs astroid 2; unfortunately, it uses `typed_ast` | ||
# which has a C extension that doesn't build on PyPy | ||
pylint >= 2.3.1 ; python_version >= "3.4" and platform_python_implementation == "CPython" | ||
astroid >= 2.2.5 ; python_version >= "3.4" and platform_python_implementation == "CPython" | ||
# See version requirements in setup.py | ||
cffi >= 1.12.2 ; platform_python_implementation == "CPython" | ||
# benchmarks use this | ||
perf >= 1.6.0 |
... | ... | @@ -3,5 +3,13 @@ |
# https://github.com/mgedmin/restview | ||
restview | ||
-r ci-requirements.txt | ||
pylint>=1.8.0 ; python_version < "3.4" | ||
# pylint 2 needs astroid 2; unfortunately, it uses `typed_ast` | ||
# which has a C extension that doesn't build on PyPy | ||
pylint >= 2.3.1 ; python_version >= "3.4" and platform_python_implementation == "CPython" | ||
astroid >= 2.2.5 ; python_version >= "3.4" and platform_python_implementation == "CPython" | ||
# benchmarks use this | ||
perf >= 1.6.0 | ||
-e .[test,events,dnspython,doc] |
pyproject.toml
0 → 100644
Please register or sign in to comment