Fix build with latest gym (#1034)

* update to use latest version of gym

* fix imports

* narrow down gym version to 0.15.4 <= gym < 0.16.0
This commit is contained in:
pzhokhov
2019-11-10 11:10:01 -08:00
committed by GitHub
parent 391811d98c
commit 9ee399f5b2
2 changed files with 4 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ setup(name='baselines',
packages=[package for package in find_packages()
if package.startswith('baselines')],
install_requires=[
'gym>=0.10.0, <1.0.0',
'gym>=0.15.4, <0.16.0',
'scipy',
'tqdm',
'joblib',