Skip to content

Commit

Permalink
Merge pull request #492 from toslunar/fix-travis
Browse files Browse the repository at this point in the history
Fix Travis error
  • Loading branch information
muupan committed Jun 28, 2019
2 parents af7b551 + 527c0c4 commit 861181a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,15 @@ install:
- pip install -r requirements.txt --only-binary=numpy,scipy
- pip install jupyter
# gym 0.11.0 causes an error with Python 2
- pip install "gym!=0.11.0"
# gym 0.13 requires atari_py 0.2, which is not available in Python 2
# atari_py==0.1.4 causes an error
- pip install atari_py==0.1.1
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then
pip install gym==0.9.7;
pip install atari_py==0.1.7;
else
pip install gym==0.13.0;
pip install atari_py==0.2.0;
fi
- pip install autopep8
- pip install flake8
- pip install coveralls
Expand Down

0 comments on commit 861181a

Please sign in to comment.