remove bullet extra, constrain gym version to be >= 0.10.0 (#885)

* remove bullet extra, constrain gym version to be >= 0.10.0

* constrain gym version from above
This commit is contained in:
pzhokhov
2019-04-26 16:14:49 -07:00
committed by GitHub
parent a07fad9066
commit 3301089b48

View File

@@ -14,9 +14,6 @@ extras = {
'pytest-forked', 'pytest-forked',
'atari-py' 'atari-py'
], ],
'bullet': [
'pybullet',
],
'mpi': [ 'mpi': [
'mpi4py' 'mpi4py'
] ]
@@ -32,7 +29,7 @@ setup(name='baselines',
packages=[package for package in find_packages() packages=[package for package in find_packages()
if package.startswith('baselines')], if package.startswith('baselines')],
install_requires=[ install_requires=[
'gym', 'gym>=0.10.0, <1.0.0',
'scipy', 'scipy',
'tqdm', 'tqdm',
'joblib', 'joblib',