Skip to content

Commit

Permalink
0.18.0 release, release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
pzhokhov committed Dec 18, 2020
1 parent 1e5f770 commit 2c50315
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.rst
Expand Up @@ -179,6 +179,12 @@ Resources

What's new
==========
- 2020-12-18 (v 0.18.0)
+ Add python 3.9 support
- Remove python 3.5 support (thanks @justinkterry on both!)
+ TimeAwareObservationWrapper (thanks @zuoxingdong!)
+ Space-related fixes and tests (thanks @wmmc88!)

- 2020-09-29 (v 0.17.3)
+ Allow custom spaces in VectorEnv (thanks @tristandeleu!)
+ CarRacing performance improvements (thanks @leocus!)
Expand Down
2 changes: 1 addition & 1 deletion gym/version.py
@@ -1 +1 @@
VERSION = '0.17.3'
VERSION = '0.18.0'
2 changes: 2 additions & 0 deletions py.Dockerfile
Expand Up @@ -19,6 +19,8 @@ RUN pip install pytest pytest-forked lz4

COPY . /usr/local/gym/
WORKDIR /usr/local/gym/
# install all extras for python 3.6 and 3.7, and skip mujoco add-ons for 3.8 and 3.9
# as mujoco 1.50 does not seem to work with 3.8 and 3.9
RUN bash -c "[[ $PYTHON_VER =~ 3\.[6-7]\.[0-9] ]] && pip install -e .[all] || pip install -e .[nomujoco]"

ENTRYPOINT ["/usr/local/gym/bin/docker_entrypoint"]
Expand Down

0 comments on commit 2c50315

Please sign in to comment.