-
-
Notifications
You must be signed in to change notification settings - Fork 838
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Proposal] restrict mujoco
version for "mujoco environments" (v4+)
#570
Comments
Yes, for now, we have pinned the mujoco version for the CI to avoid this issue |
We would have to skip CI for |
An elegant way, not way. We have a |
issue has been fixed with: #589 |
hi, how to pin the mujoco to 2.3.3? just input pip install mujoco==2.3.3? |
yes |
Proposal
mujoco v4 environments support:
"2.1.5" <= mujoco.__version__ <= "2.3.3"
mujoco v5 environments (will) support:
"2.3.3" <= mujoco.__version__
and it is a good long term solution to pin
mujoco==2.3.3
and so a restriction should be added to prevent making a mujoco-v4 environment with an unsupported version of
mujoco
e.g.
gym.make("Hopper-v4") # with mujoco==2.3.5
a possible implementation would be to add something like to all the
v4
environmentsThere may be a better way to implement this. (Perhaps in
registration
?)Motivation
No response
Pitch
No response
Alternatives
generate a warning instead of an error
Additional context
No response
Checklist
The text was updated successfully, but these errors were encountered: