Skip to content

Commit

Permalink
Replace pybullet envs with gymnasium compatible versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestum committed Sep 14, 2023
1 parent eab86ac commit 7160eb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ jobs:
# install parking-env to test HER
pip install highway-env==1.8.1
pip install -e .
# install pybullet envs
pip install pybullet_envs_gymnasium
- name: Lint with ruff
run: |
make lint
Expand Down
4 changes: 2 additions & 2 deletions rl_zoo3/import_envs.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
from rl_zoo3.wrappers import MaskVelocityWrapper

try:
import pybullet_envs # pytype: disable=import-error
import pybullet_envs_gymnasium # pytype: disable=import-error
except ImportError:
pybullet_envs = None
pybullet_envs_gymnasium = None

try:
import highway_env # pytype: disable=import-error
Expand Down

0 comments on commit 7160eb2

Please sign in to comment.