Skip to content

Commit c42c2c8

Browse files
authoredJan 19, 2020
Merge pull request #215 from weka-io/fixate-pyyaml-version
Install older PyYaml version when testing with Python 3.4
2 parents d1305ec + ef39890 commit c42c2c8

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
 

‎.travis.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@ env:
1414
- GEVENT=false
1515

1616
install:
17-
- pip install gevent PyYaml pytest-random-order
17+
- pip install gevent pytest-random-order
18+
# PyYaml 5.3 removed support for Python 3.4
19+
- |-
20+
if [[ $TRAVIS_PYTHON_VERSION = 3.4 ]]; then
21+
pip install PyYaml==5.2
22+
else
23+
pip install PyYaml
24+
fi
1825
- pip install sphinx==1.7.9 ghp-import
1926

2027
before_script:

0 commit comments

Comments
 (0)