Skip to content

Commit

Permalink
Merge pull request #211 from hendriks73/fix_py34_test
Browse files Browse the repository at this point in the history
Fix Python 3.4 CI Build
  • Loading branch information
urinieto authored Nov 29, 2020
2 parents 255a5ee + d77314d commit 699adab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ if [ ! -d "$src" ]; then
export PATH="$src/bin:$PATH"
conda_create
source activate $ENV_NAME
# later versions than 5.2 do not support python 3.4 anymore
pip install PyYAML==5.2; python_version==3.4
pip install python-coveralls
source deactivate
popd
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
install_requires=[
'pandas',
'sortedcontainers>=2.0.0',
'pyrsistent<0.15; python_version=="3.4"',
'jsonschema>=3.0.0',
'numpy>=1.8.0',
'six',
Expand Down

0 comments on commit 699adab

Please sign in to comment.