Skip to content

Commit

Permalink
[ci skip] Update Gym version
Browse files Browse the repository at this point in the history
  • Loading branch information
araffin committed Nov 6, 2018
1 parent 6776f53 commit 7cec113
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions docker/Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ RUN \
mkdir $CODE_DIR && \
cd $CODE_DIR && \
pip install --upgrade pip && \
pip install pytest && \
pip install pytest-cov && \
pip install codacy-coverage && \
pip install scipy && \
pip install tqdm && \
Expand All @@ -28,10 +26,11 @@ RUN \
pip install numpy && \
pip install pandas && \
pip install pytest==3.5.1 && \
pip install pytest-cov && \
pip install matplotlib && \
pip install seaborn && \
pip install glob2 && \
pip install gym[atari,classic_control]==0.10.5
pip install gym[atari,classic_control]>=0.10.9

ENV PATH=$VENV/bin:$PATH

Expand Down
5 changes: 2 additions & 3 deletions docker/Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ RUN \
mkdir $CODE_DIR && \
cd $CODE_DIR && \
pip install --upgrade pip && \
pip install pytest && \
pip install pytest-cov && \
pip install codacy-coverage && \
pip install scipy && \
pip install tqdm && \
Expand All @@ -28,10 +26,11 @@ RUN \
pip install numpy && \
pip install pandas && \
pip install pytest==3.5.1 && \
pip install pytest-cov && \
pip install matplotlib && \
pip install seaborn && \
pip install glob2 && \
pip install gym[atari,classic_control]==0.10.5
pip install gym[atari,classic_control]>=0.10.9

ENV PATH=$VENV/bin:$PATH

Expand Down
1 change: 1 addition & 0 deletions docs/misc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Pre-Release 2.1.2a (WIP)

- added ``async_eigen_decomp`` parameter for ACKTR and set it to ``False`` by default (remove deprecation warnings)
- added methods for calling env methods/setting attributes inside a VecEnv (thanks to @bjmuld)
- updated gym minimum version


Release 2.1.1 (2018-10-20)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
packages=[package for package in find_packages()
if package.startswith('stable_baselines')],
install_requires=[
'gym[atari,classic_control]==0.10.5',
'gym[atari,classic_control]>=0.10.9',
'scipy',
'tqdm',
'joblib',
Expand Down

0 comments on commit 7cec113

Please sign in to comment.