Skip to content

Commit 65cda81

Browse files
Final release of Mujoco-py 2.0 (#371)
* Updated README documentation. * Removed the 'alpha' pre-release version info. * Fixing pip install command that seems to help with docker build in CI. * Updating README to the next major version.
1 parent 343ea73 commit 65cda81

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ WORKDIR /mujoco_py
5757
# expire until we actually change the requirements.
5858
COPY ./requirements.txt /mujoco_py/
5959
COPY ./requirements.dev.txt /mujoco_py/
60-
RUN pip install -r requirements.txt
61-
RUN pip install -r requirements.dev.txt
60+
RUN pip install --no-cache-dir -r requirements.txt
61+
RUN pip install --no-cache-dir -r requirements.dev.txt
6262

6363
# Delay moving in the entire code until the very end.
6464
ENTRYPOINT ["/mujoco_py/vendor/Xdummy-entrypoint"]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The following platforms are currently supported:
1919

2020
The following platforms are DEPRECATED and unsupported:
2121

22-
- Windows support has been DEPRECATED and removed in [2.0.2.0]. One known good past version is [1.50.1.68](https://github.com/openai/mujoco-py/blob/9ea9bb000d6b8551b99f9aa440862e0c7f7b4191/README.md#requirements).
22+
- Windows support has been DEPRECATED and removed in [2.0.2.0](https://github.com/openai/mujoco-py/releases/tag/v2.0.2.0a1). One known good past version is [1.50.1.68](https://github.com/openai/mujoco-py/blob/9ea9bb000d6b8551b99f9aa440862e0c7f7b4191/README.md#requirements).
2323
- Python 2 has been DEPRECATED and removed in [1.50.1.0](https://github.com/openai/mujoco-py/releases/tag/1.50.1.0). Python 2 users can stay on the [`0.5` branch](https://github.com/openai/mujoco-py/tree/0.5). The latest release there is [`0.5.7`](https://github.com/openai/mujoco-py/releases/tag/0.5.7) which can be installed with `pip install mujoco-py==0.5.7`.
2424

2525
### Install MuJoCo

mujoco_py/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
def get_version():
99
"Returns the version as a human-format string."
10-
return '%d.%d.%d.%da1' % version_info
10+
return '%d.%d.%d.%d' % version_info
1111

1212

1313
__version__ = get_version()

0 commit comments

Comments
 (0)