Try to install less stuff: cryptography doesn't build on windows
Showing
... | @@ -12,8 +12,10 @@ greenlet>=0.4.13 ; platform_python_implementation == "CPython" | ... | @@ -12,8 +12,10 @@ greenlet>=0.4.13 ; platform_python_implementation == "CPython" |
pylint>=1.8.0 | pylint>=1.8.0 | ||
# pyyaml is included here and doesn't install on travis with 3.7a3 | # pyyaml is included here and doesn't install on travis with 3.7a3 | ||
prospector[with_pyroma] ; python_version < '3.7' | prospector[with_pyroma] ; python_version < '3.7' | ||
coverage>=4.0 | # We don't run coverage on Windows, and pypy can't build it there | ||
coveralls>=1.0 | # anyway (coveralls -> cryptopgraphy -> openssl) | ||
coverage>=4.0 ; sys_platform != 'win32' | |||
coveralls>=1.0 ; sys_platform != 'win32' | |||
# See version requirements in setup.py | # See version requirements in setup.py | ||
cffi >= 1.11.5 ; platform_python_implementation == "CPython" | cffi >= 1.11.5 ; platform_python_implementation == "CPython" | ||
futures | futures | ||
... | @@ -26,12 +28,3 @@ perf | ... | @@ -26,12 +28,3 @@ perf |
# Events | # Events | ||
zope.event | zope.event | ||
zope.interface | zope.interface | ||
# Tests | |||
requests | |||
# For viewing README.rst (restview --long-description), | |||
# CONTRIBUTING.rst, etc. | |||
# https://github.com/mgedmin/restview | |||
restview | |||
-r rtd-requirements.txt |
Please register or sign in to comment