You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm creating this issue to discuss my current ideas/progress on making whynot compatible with the latest version of gymnasium.
I'm thinking about erasing registration.py and instead just initializing the environment on the main file, like the examples in the petting zoo:
from tutorial3_action_masking import CustomEnvironment
from pettingzoo.test import parallel_api_test
if __name__ == "__main__":
env = CustomEnvironment()
parallel_api_test(env, num_cycles=1_000_000)
There's no longer support for registration. This doesn't seem really necessary? But maybe I'm missing something and we should support registration ourselves?
The text was updated successfully, but these errors were encountered:
I'm creating this issue to discuss my current ideas/progress on making
whynot
compatible with the latest version ofgymnasium
.I'm thinking about erasing registration.py and instead just initializing the environment on the main file, like the examples in the petting zoo:
There's no longer support for registration. This doesn't seem really necessary? But maybe I'm missing something and we should support registration ourselves?
The text was updated successfully, but these errors were encountered: