Skip to content

Commit 1d11ab8

Browse files
committed
fix CI on py2.6 and py3.2
1 parent 6e7b05f commit 1d11ab8

5 files changed

+18
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ python:
88
- "pypy"
99
- "pypy3"
1010
install:
11-
- pip install python-coveralls
11+
- if [[ -e build-requirements-${TRAVIS_PYTHON_VERSION}.txt ]]; then travis_retry pip install -r build-requirements-${TRAVIS_PYTHON_VERSION}.txt; else travis_retry pip install -r build-requirements.txt; fi
1212
script:
1313
- coverage run setup.py test
1414
- python setup.py speed

build-requirements-2.6.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
tox
2+
coveralls<1.3.0
3+
idna<2.8

build-requirements-3.2.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
coveralls<1
2+
pylint<2.0
3+
coverage<4
4+
requests<2.11
5+
urllib3<1.11
6+
PyYAML<3.13
7+
tox<3.0
8+
wheel<0.30
9+
virtualenv==15.2.0

build-requirements-3.3.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
python-coveralls
2+
tox<3.0
3+
wheel<0.30
4+
virtualenv==15.2.0

build-requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python-coveralls

0 commit comments

Comments
 (0)