Commit 3d5a60c1 authored by Jason Madden's avatar Jason Madden

Modern dependencies: remove beta qualifier, get greenlet that is known to build on windows.

parent 08b62d94
...@@ -19,7 +19,7 @@ install: ...@@ -19,7 +19,7 @@ install:
# disables the cache. # disables the cache.
# We need wheel>=0.26 on Python 3.5. See previous revisions. # We need wheel>=0.26 on Python 3.5. See previous revisions.
- travis_retry pip install -U wheel - travis_retry pip install -U wheel
- travis_retry pip install -U tox cython greenlet pep8 pyflakes "coverage>=4.0b3" "coveralls>=1.0b1" - travis_retry pip install -U tox cython greenlet pep8 pyflakes "coverage>=4.0" "coveralls>=1.0"
script: script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' && $LINT == true ]]; then python setup.py develop && make travis_test_linters; elif [[ $LINT == false && $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then python setup.py develop && make fulltoxtest; elif [[ $LINT == false ]]; then python setup.py develop && make fulltoxtest; fi - if [[ $TRAVIS_PYTHON_VERSION == '2.7' && $LINT == true ]]; then python setup.py develop && make travis_test_linters; elif [[ $LINT == false && $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then python setup.py develop && make fulltoxtest; elif [[ $LINT == false ]]; then python setup.py develop && make fulltoxtest; fi
notifications: notifications:
......
...@@ -65,7 +65,7 @@ install: ...@@ -65,7 +65,7 @@ install:
# compiled extensions and are not provided as pre-built wheel packages, # compiled extensions and are not provided as pre-built wheel packages,
# pip will build them from source using the MSVC compiler matching the # pip will build them from source using the MSVC compiler matching the
# target Python version and architecture # target Python version and architecture
- "%CMD_IN_ENV% pip install cython greenlet" - "%CMD_IN_ENV% pip install -U cython greenlet"
- "python util/cythonpp.py -o gevent.corecext.c gevent/core.ppyx" - "python util/cythonpp.py -o gevent.corecext.c gevent/core.ppyx"
- "type gevent\\callbacks.c >> gevent.corecext.c" - "type gevent\\callbacks.c >> gevent.corecext.c"
......
...@@ -316,7 +316,7 @@ def read(name, *args): ...@@ -316,7 +316,7 @@ def read(name, *args):
if PYPY: if PYPY:
install_requires = [] install_requires = []
else: else:
install_requires = ['greenlet >= 0.4.7'] install_requires = ['greenlet >= 0.4.9']
# If we are running info / help commands, or we're being imported by # If we are running info / help commands, or we're being imported by
# tools like pyroma, we don't need to build anything # tools like pyroma, we don't need to build anything
......
...@@ -5,8 +5,8 @@ envlist = ...@@ -5,8 +5,8 @@ envlist =
[testenv] [testenv]
deps = deps =
greenlet greenlet
cython cython >= 0.23.4
coverage >= 4.0b3 coverage >= 4.0
whitelist_externals = whitelist_externals =
* *
commands = commands =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment