Skip to content

Commit

Permalink
Update dependencies in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillemdb committed Aug 30, 2024
1 parent 3d1dafe commit 58c8b8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
sudo apt-get install -y xvfb -y
sudo MUJOCO_PATH=/home/runner/.mujoco/ make install-envs
rye pin --relaxed cpython@${{ matrix.python-version }}
rye sync --all-features
rye sync --all-features --no-lock
ROM_PASSWORD=${{ secrets.ROM_PASSWORD }} make import-roms
- name: Test with pytest
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ dependencies = [
"pyglet==1.5.11",
"pyvirtualdisplay>=3.0",
"imageio>=2.35.1",
"stable-retro @ git+https://github.com/Farama-Foundation/stable-retro",
]
[project.optional-dependencies]
atari = ["ale-py>=0.7.0", "gymnasium[accept-rom-license,atari]>=0.29.1"]
Expand All @@ -39,7 +40,7 @@ nes = [
classic-control = ["gymnasium[classic_control]>=0.29.1", "pygame>=2.6.0"]
ray = ["ray>=2.35.0"]
dm_control = ["dm-control>=1.0.22", "gym @ git+https://github.com/FragileTech/gym.git"]
retro = ["stable-retro>=0.9.2"]
retro = ["stable-retro"]
jupyter = ["jupyterlab>=3.2.0"]
box_2d = ["box2d-py==2.3.5"]
test = [
Expand All @@ -63,6 +64,7 @@ path = "src/plangym/version.py"

[tool.rye]
dev-dependencies = ["ruff"]
universal = true

[tool.rye.scripts]
style = { chain = ["ruff check --fix-only --unsafe-fixes tests src", "ruff format tests src"] }
Expand Down

0 comments on commit 58c8b8c

Please sign in to comment.