File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ python:
55services :
66 - docker
77env :
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
1313install : " " # so travis doesn't do pip install requirements.txt
1414script :
@@ -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
Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ COPY . /usr/local/gym/
2121WORKDIR /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
2627ENTRYPOINT ["/usr/local/gym/bin/docker_entrypoint" ]
2728CMD ["pytest" ,"--forked" ]
You can’t perform that action at this time.
0 commit comments