8000 fix python 3.2 build · NaasCraft/python-jsonpath-rw@320deb5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 320deb5

Browse files
committed
fix python 3.2 build
1 parent 1310c0c commit 320deb5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ python:
88
install:
99
- "pip install ."
1010
- "pip install pytest"
11-
- "pip install coverage coveralls"
11+
- "pip install coveralls"
12+
# Coveralls 4.0 doesn't support Python 3.2
13+
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip install coverage==3.7.1; fi
14+
- if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then pip install coverage; fi
1215
script: coverage run setup.py test
1316
after_success:
1417
- coveralls

0 commit comments

Comments
 (0)
0