Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd9e6b0 commit 6d375b9Copy full SHA for 6d375b9
.travis.yml
@@ -2,6 +2,7 @@ language: python
2
python:
3
- 2.6
4
- 2.7
5
+ - 3.4
6
env:
7
matrix:
8
- PYZMQ='pyzmq>=14'
setup.py
@@ -35,13 +35,19 @@
35
36
37
requirements = [
38
- 'gevent>=1.0',
39
'msgpack-python>=0.4.0',
40
- 'pyzmq>=13.1.0'
+ 'pyzmq>=13.1.0',
+ 'future',
41
]
42
+
43
if sys.version_info < (2, 7):
44
requirements.append('argparse')
45
46
+if sys.version_info < (3, 0):
47
+ requirements.append('gevent>=1.0')
48
+else:
49
+ requirements.append('gevent>=1.1rc5')
50
51
52
setup(
53
name='zerorpc',
0 commit comments