Skip to content

Commit ab7d60e

Browse files
authored
Fixes fetch/slide environment. (openai#1511)
1 parent 3ddd841 commit ab7d60e

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.rst

+3
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,9 @@ We are using `pytest <http://doc.pytest.org>`_ for tests. You can run them via:
186186

187187
What's new
188188
==========
189+
- 2019-05-28 (v0.12.5)
190+
+ fixed Fetch-slide environment to be solvable.
191+
189192
- 2019-05-24 (v0.12.4)
190193
+ remove pyopengl dependency and use more narrow atari-py and box2d-py versions
191194

gym/envs/robotics/fetch/slide.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def __init__(self, reward_type='sparse'):
1515
'robot0:slide0': 0.05,
1616
'robot0:slide1': 0.48,
1717
'robot0:slide2': 0.0,
18-
'object0:joint': [1.7, 1.1, 0.4, 1., 0., 0., 0.],
18+
'object0:joint': [1.7, 1.1, 0.41, 1., 0., 0., 0.],
1919
}
2020
fetch_env.FetchEnv.__init__(
2121
self, MODEL_XML_PATH, has_object=True, block_gripper=True, n_substeps=20,

gym/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '0.12.4'
1+
VERSION = '0.12.5'

0 commit comments

Comments
 (0)