@@ -5,7 +5,6 @@ python:
# command to install dependencies
install:
- pip3 install -e .
- - pip3 install git+https://github.com/openai/gym.git@0.25.0
# command to run tests
script: ./run_tests.py
@@ -10,8 +10,8 @@ laptop, which means you can run your experiments faster. A known-working RL
implementation can be found [in this repository](https://github.com/lcswillems/torch-rl).
Requirements:
-- Python 3.5+
-- OpenAI Gym
+- Python 3.7+
+- OpenAI Gym 0.25+
- NumPy
- Matplotlib (optional, only needed for display)
@@ -671,7 +671,8 @@ class MiniGridEnv(gym.Env):
max_steps=100,
see_through_walls=False,
agent_view_size=7,
- render_mode=None
+ render_mode=None,
+ **kwargs
):
# Can't set both grid_size and width/height
if grid_size:
@@ -24,8 +24,8 @@ setup(
python_requires=">=3.7, <3.11",
long_description_content_type="text/markdown",
install_requires=[
- 'gym @ git+https://github.com/openai/gym.git@0.25.0',
- "numpy>=1.18.0"
+ "numpy>=1.18.0",
+ 'gym>=0.25.0'
],
classifiers=[
"Development Status :: 5 - Production/Stable",