Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
xkiixkii committed Oct 4, 2024
2 parents 03cd42a + 65f2a02 commit d0d0ee6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install . --user
pip install .[dev,mujoco] --user
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,14 @@
install_requires=[
"pybullet",
"gymnasium>=1.0.0a2",
"gymnasium>=1.0.0a2",
"numpy>=1.23.5,<2.0.0",
"pytransform3d",
"mujoco>=3.2.0",
"imageio >= 2.34.1",
],
extras_require={
"mujoco": ["mujoco>= 3.2.0", "imageio >=2.34.1"],
"dev": ["pytest", "pre-commit", "flake8"],
},
)

0 comments on commit d0d0ee6

Please sign in to comment.