Skip to content

Commit ad00e34

Browse files
committed
Merge branch 'master' of github.com:openai/gym
2 parents df9ead9 + ee5ee3a commit ad00e34

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ python:
55
services:
66
- docker
77
env:
8-
- PY_VER=3.6.8
9-
- PY_VER=3.7.3
10-
- PY_VER=3.8.6
11-
- PY_VER=3.9.0
8+
- PY_VER=3.6.13
9+
- PY_VER=3.7.10
10+
- PY_VER=3.8.9
11+
- PY_VER=3.9.4
1212

1313
install: "" # so travis doesn't do pip install requirements.txt
1414
script:
@@ -21,4 +21,4 @@ deploy:
2121
password: $TWINE_PASSWORD
2222
on:
2323
tags: true
24-
condition: $PY_VER = 3.6.8
24+
condition: $PY_VER = 3.8.9

py.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ COPY . /usr/local/gym/
2121
WORKDIR /usr/local/gym/
2222
# install all extras for python 3.6 and 3.7, and skip mujoco add-ons for 3.8 and 3.9
2323
# as mujoco 1.50 does not seem to work with 3.8 and 3.9
24-
RUN bash -c "[[ $PYTHON_VER =~ 3\.[6-7]\.[0-9] ]] && pip install -e .[all] || pip install -e .[nomujoco]"
24+
# RUN bash -c "[[ $PYTHON_VER =~ 3\.[6-7]\.[0-9] ]] && pip install -e .[all] || pip install -e .[nomujoco]"
25+
RUN pip install -e .[nomujoco]
2526

2627
ENTRYPOINT ["/usr/local/gym/bin/docker_entrypoint"]
2728
CMD ["pytest","--forked"]

0 commit comments

Comments
 (0)