Skip to content

Commit

Permalink
Test python 3.4 build with beta gevent. Disable sudo on travis-ci for…
Browse files Browse the repository at this point in the history
… container builds.
  • Loading branch information
Dan committed Sep 29, 2015
1 parent e4899df commit cde3f63
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ sudo: false
python:
- 2.6
- 2.7
- 3.4
install:
- pip install -r requirements.txt
- pip install coveralls
Expand All @@ -12,3 +13,4 @@ notifications:
on_failure: change
after_success:
- coveralls
sudo: false
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
paramiko>=1.9
gevent>=1.0.1
gevent>=1.1b2
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@

from distutils.core import setup
from setuptools import find_packages
import sys

convert_2_to_3 = {}
if sys.version_info >= (3,):
convert_2_to_3['use_2to3'] = True

setup(name='parallel-ssh',
version='0.70.3',
Expand All @@ -34,4 +39,5 @@
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: BSD',
],
**convert_2_to_3
)

0 comments on commit cde3f63

Please sign in to comment.