Skip to content

Commit eddba20

Browse files
author
ocaisa
authored
Merge pull request #2584 from boegel/travis_pycparser
stick to pycparser < 2.19 with Python 2.6 in Travis config
2 parents 9fb3464 + 3c818ca commit eddba20

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.travis.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)