File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,12 @@ before_install:
4444 - if [ "x$TRAVIS_PYTHON_VERSION" == 'x2.6' ]; then pip install 'GitPython<2.0'; else pip install GitPython; fi
4545 # pydot (dep for python-graph-dot) 1.2.0 and more recent doesn't work with Python 2.6
4646 - if [ "x$TRAVIS_PYTHON_VERSION" == 'x2.6' ]; then pip install pydot==1.1.0; else pip install pydot; fi
47- # paramiko (dep for GC3Pie) 2.4.0 & more recent doesn't work with Python 2.6
48- - if [ "x$TRAVIS_PYTHON_VERSION" == 'x2.6' ]; then pip install 'paramiko<2.4.0'; else pip install paramiko; fi
49- # SQLAlchemy (dep for GC3Pie) 1.2.0 & more recent doesn't work with Python 2.6
50- - if [ "x$TRAVIS_PYTHON_VERSION" == 'x2.6' ]; then pip install 'SQLAlchemy<1.2.0'; else pip install SQLAlchemy; fi
47+ # pycparser 2.19 (dep for paramiko) doesn't work with Python 2.6
48+ - if [ "x$TRAVIS_PYTHON_VERSION" == 'x2.6' ]; then pip install 'pycparser<2.19'; fi
49+ # paramiko 2.4.0 (dep for GC3Pie) & more recent doesn't work with Python 2.6
50+ - if [ "x$TRAVIS_PYTHON_VERSION" == 'x2.6' ]; then pip install 'paramiko<2.4.0'; fi
51+ # SQLAlchemy 1.2.0 (dep for GC3Pie) & more recent doesn't work with Python 2.6
52+ - if [ "x$TRAVIS_PYTHON_VERSION" == 'x2.6' ]; then pip install 'SQLAlchemy<1.2.0'; fi
5153 # autopep8 1.3.4 is last one to support Python 2.6
5254 - if [ "x$TRAVIS_PYTHON_VERSION" == 'x2.6' ]; then pip install 'autopep8<1.3.5'; else pip install autopep8; fi
5355 # optional Python packages for EasyBuild
You can’t perform that action at this time.
0 commit comments