Skip to content

Commit

Permalink
Patch setup to pin versions. New matplotlib version fixes plotting bu…
Browse files Browse the repository at this point in the history
…g on Mac OS.
  • Loading branch information
jachiam committed Nov 4, 2019
1 parent 2e0eff9 commit e594878
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
py_modules=['spinup'],
version=__version__,#'0.1',
install_requires=[
'cloudpickle==0.5.2',
'cloudpickle==1.2.1',
'gym[atari,box2d,classic_control]>=0.10.8',
'ipython',
'joblib',
'matplotlib==3.0.2',
'matplotlib==3.1.1',
'mpi4py',
'numpy',
'pandas',
Expand All @@ -29,7 +29,7 @@
'tensorflow>=1.8.0,<2.0',
'tqdm'
],
extras_require={'mujoco': 'mujoco-py<2.1,>=2.0'},
extras_require={'mujoco': 'mujoco-py==2.0.2.7'},
description="Teaching tools for introducing people to deep RL.",
author="Joshua Achiam",
)
2 changes: 1 addition & 1 deletion spinup/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version_info = (0, 1, 2)
version_info = (0, 1, 3)
# format:
# ('spinup_major', 'spinup_minor', 'spinup_patch')

Expand Down

0 comments on commit e594878

Please sign in to comment.