Skip to content

Commit

Permalink
Remove python 3.12 and add warning to ignore for DM-control
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudo-rnd-thoughts committed Jan 6, 2025
1 parent 544876d commit cfb8a3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- run: |
Expand Down
1 change: 1 addition & 0 deletions tests/test_dm_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ def test_dm_control_suite_envs():
"A Box observation space maximum value is infinity. This is probably too high.",
"For Box action spaces, we recommend using a symmetric and normalized space (range=[-1, 1] or [0, 1]). See https://stable-baselines3.readthedocs.io/en/master/guide/rl_tips.html for more information.",
"Calling `env.close()` on the closed environment should be allowed, but it raised an exception: _data",
"`in1d` is deprecated. Use `np.isin` instead.",
]
]

Expand Down

0 comments on commit cfb8a3d

Please sign in to comment.