Restrict gevent for older versions and newer versions

Gevent >= 1.1 is not py2.6 compat; so use the requirements
python version restriction mechanism to restrict what
versions work on older versions of python.
This commit is contained in:
Joshua Harlow 2017-03-10 17:35:39 -08:00
parent b77d8dee99
commit d85b0895eb
1 changed files with 2 additions and 1 deletions

View File

@ -1 +1,2 @@
gevent>=1.0.2
gevent>1.1; python_version>='2.7'
gevent<=1.1; python_version=='2.6'