Skip to content

Commit

Permalink
Fix gym version (#34)
Browse files Browse the repository at this point in the history
* fix gym version to be <0.24

* new version
  • Loading branch information
qgallouedec authored Jul 4, 2022
1 parent 68c8742 commit 2f634e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Quentin Gallouédec'

# The full version, including alpha/beta/rc tags
release = 'v2.0.2'
release = 'v2.0.3'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion panda_gym/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.2
2.0.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
include_package_data=True,
package_data={"panda_gym": ["version.txt"]},
version=__version__,
install_requires=["gym>=0.22", "gym-robotics", "pybullet", "numpy", "scipy"],
install_requires=["gym>=0.22, <=0.23", "gym-robotics", "pybullet", "numpy", "scipy"],
extras_require={
"tests": ["pytest-cov"],
"codestyle": ["black", "isort", "pytype"],
Expand Down

0 comments on commit 2f634e2

Please sign in to comment.