Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 08b8763

Browse files
committed
gevent 1.1.* for python 2.6
1 parent 0531921 commit 08b8763

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@
4444
if sys.version_info < (2, 7):
4545
requirements.append('argparse')
4646

47-
if sys.version_info < (3, 0):
47+
if sys.version_info < (2, 7):
48+
requirements.append('gevent==1.1.*')
49+
elif sys.version_info < (3, 0):
4850
requirements.append('gevent>=1.0')
4951
else:
5052
requirements.append('gevent>=1.1rc5')

0 commit comments

Comments
 (0)