diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-14 09:30:24 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-14 09:30:24 -0500 |
commit | 512fa0ed1419d1e51013fa706bb2b214c611bb52 (patch) | |
tree | 7b0e30b3ca6f8c9b5cd79edf442f6c8f6431fb42 | |
parent | e1ac0834e5e0007f17545d281da413e12c27e181 (diff) | |
download | python-coveragepy-git-512fa0ed1419d1e51013fa706bb2b214c611bb52.tar.gz |
Get gevent and greenlet running on 3.7 by installing from git
-rw-r--r-- | tox.ini | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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. |