diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-03-02 14:34:05 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-03-02 14:34:05 -0500 |
commit | 62f910bacab11d274d38bc790cf57b3dc2f54b50 (patch) | |
tree | b3f7b8257f705a37b737ee21fc1d8374d7177943 | |
parent | c9995bf09bedda8e57c457fe8500d38d02086793 (diff) | |
download | python-coveragepy-git-62f910bacab11d274d38bc790cf57b3dc2f54b50.tar.gz |
Stop testing gevent on py26
-rw-r--r-- | appveyor.yml | 4 | ||||
-rw-r--r-- | tox.ini | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml index f96a5ba3..8fb99b43 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -105,14 +105,12 @@ install: # Upgrade to the latest version of pip to avoid it displaying warnings # about it being out of date. - "pip install --disable-pip-version-check --user --upgrade pip" + # And upgrade virtualenv to get the latest pip inside .tox virtualenvs. - "pip install --disable-pip-version-check --user --upgrade virtualenv" # Install requirements. - "%CMD_IN_ENV% pip install -r requirements/tox.pip -r requirements/wheel.pip" - # Test why gevent is failing - - "%CMD_IN_ENV% pip install -vvv gevent==1.1rc5" - # Make a python3.4.bat file in the current directory so that tox will find it # and python3.4 will mean what we want it to. - "python -c \"import os; open('python{0}.{1}.bat'.format(*os.environ['TOXENV'][2:]), 'w').write('@{0}\\\\python \\x25*\\n'.format(os.environ['PYTHON']))\"" @@ -15,7 +15,7 @@ deps = mock==1.3.0 PyContracts==1.7.9 py26: unittest2==1.1.0 - py{26,27,33,34,35}: gevent==1.1rc5 + py{27,33,34,35}: gevent==1.1rc5 py{26,27,33,34}: eventlet==0.18.4 py{26,27,33,34,35}: greenlet==0.4.9 # setuptools no longer supports Python 3.2 |