File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ sudo: false
33python :
44 - 2.6
55 - 2.7
6+ - 3.4
67install :
78 - pip install -r requirements.txt
89 - pip install coveralls
@@ -12,3 +13,4 @@ notifications:
1213 on_failure : change
1314after_success :
1415 - coveralls
16+ sudo : false
Original file line number Diff line number Diff line change 11paramiko >= 1.9
2- gevent >= 1.0.1
2+ gevent >= 1.1b2
Original file line number Diff line number Diff line change 1515
1616from distutils .core import setup
1717from setuptools import find_packages
18+ import sys
19+
20+ convert_2_to_3 = {}
21+ if sys .version_info >= (3 ,):
22+ convert_2_to_3 ['use_2to3' ] = True
1823
1924setup (name = 'parallel-ssh' ,
2025 version = '0.70.3' ,
3439 'Operating System :: POSIX :: Linux' ,
3540 'Operating System :: POSIX :: BSD' ,
3641 ],
42+ ** convert_2_to_3
3743 )
You can’t perform that action at this time.
0 commit comments