summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-01-14 09:30:24 -0500
committerNed Batchelder <ned@nedbatchelder.com>2018-01-14 09:30:24 -0500
commit2648d0ba7354eab88bbaff2ae0ae6d55e93242b9 (patch)
tree910d59756f7b83964a2d0bf7dbfbea7ebbf3ab51
parentff02df947485b1b1a216b80626dba013c9c698dc (diff)
downloadpython-coveragepy-2648d0ba7354eab88bbaff2ae0ae6d55e93242b9.tar.gz
Get gevent and greenlet running on 3.7 by installing from git
-rw-r--r--tox.ini6
1 files changed, 5 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 9668897..b4c918b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -21,9 +21,13 @@ deps =
#-e/Users/ned/unittest_mixins
py26: unittest2==1.1.0
# gevent won't install on py37: https://github.com/gevent/gevent/issues/1019
+ # greenlet needs cython pre-installed.
+ py37: cython
+ py37: git+https://github.com/gevent/gevent.git@debb8d838500849a0726bb0a8d94ed8d2541396d#egg=gevent==0.0
+ py37: git+https://github.com/python-greenlet/greenlet.git@780a12b51fcef9adcc4f2c9a4cc5b05c2d652ba4#egg=greenlet==0.0
py{27,33,34,35,36}: gevent==1.2.2
py{26,27,33,34,35,36,37}: eventlet==0.22.0
- py{26,27,33,34,35,36,37}: greenlet==0.4.12
+ py{26,27,33,34,35,36}: greenlet==0.4.12
# Windows can't update the pip version with pip running, so use Python
# to install things.