We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae56652 commit aa2c447Copy full SHA for aa2c447
.github/workflows/python-package.yml
@@ -34,7 +34,9 @@ jobs:
34
run: |
35
output=$(python -m build --wheel)
36
if [[ "${{ matrix.python-version }}" == "3.12" || "${{ matrix.python-version }}" == "3.13" ]]; then
37
- pip install dist/${output##* }[full,test] --no-deps envpool
+ # Exclude envpool when testing with Python 3.12 and 3.13
38
+ pip install dist/${output##* }[test]
39
+ pip install gymnasium ray gpjax plotly pandas tensorflow-datasets grain brax plotly pandas
40
else
41
pip install dist/${output##* }[full,test]
42
fi
0 commit comments