Skip to content

Commit

Permalink
Require keras < 2.0.7 due to non-trivial API changes (#134)
Browse files Browse the repository at this point in the history
* Require keras < 2.0.7 due to non-trivial API changes

* Bump version

* Change URL

* Use pinned version for tests

* Attempt to make Travis happy
  • Loading branch information
matthiasplappert committed Sep 20, 2017
1 parent dc221ba commit 68e5d86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -52,7 +52,7 @@ install:
- if [[ "$LEGACY_KERAS" == "1" ]]; then
pip install keras==1.2.2;
else
pip install keras;
pip install "keras<2.0.7";
fi

- python setup.py install
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -3,14 +3,14 @@


setup(name='keras-rl',
version='0.3.0',
version='0.3.1',
description='Deep Reinforcement Learning for Keras',
author='Matthias Plappert',
author_email='matthiasplappert@me.com',
url='https://github.com/matthiasplappert/keras-rl',
download_url='https://github.com/matthiasplappert/keras-rl/archive/v0.3.0.tar.gz',
download_url='https://github.com/matthiasplappert/keras-rl/archive/v0.3.1.tar.gz',
license='MIT',
install_requires=['keras>=1.0.7'],
install_requires=['keras>=1.0.7,<2.0.7'],
extras_require={
'gym': ['gym'],
},
Expand Down

0 comments on commit 68e5d86

Please sign in to comment.