Skip to content

Commit cde3f63

Browse files
author
Dan
committed
Test python 3.4 build with beta gevent. Disable sudo on travis-ci for container builds.
1 parent e4899df commit cde3f63

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ sudo: false
33
python:
44
- 2.6
55
- 2.7
6+
- 3.4
67
install:
78
- pip install -r requirements.txt
89
- pip install coveralls
@@ -12,3 +13,4 @@ notifications:
1213
on_failure: change
1314
after_success:
1415
- coveralls
16+
sudo: false

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
paramiko>=1.9
2-
gevent>=1.0.1
2+
gevent>=1.1b2

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515

1616
from distutils.core import setup
1717
from 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

1924
setup(name='parallel-ssh',
2025
version='0.70.3',
@@ -34,4 +39,5 @@
3439
'Operating System :: POSIX :: Linux',
3540
'Operating System :: POSIX :: BSD',
3641
],
42+
**convert_2_to_3
3743
)

0 commit comments

Comments
 (0)