Skip to content

Commit 7358c06

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

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
@@ -2,6 +2,7 @@ language: python
22
python:
33
- 2.6
44
- 2.7
5+
- 3.4
56
install:
67
- pip install -r requirements.txt
78
- pip install coveralls
@@ -11,3 +12,4 @@ notifications:
1112
on_failure: change
1213
after_success:
1314
- coveralls
15+
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)