Skip to content

Commit aa2c447

Browse files
committed
ci: correctly exclude envpool
1 parent ae56652 commit aa2c447

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ jobs:
3434
run: |
3535
output=$(python -m build --wheel)
3636
if [[ "${{ matrix.python-version }}" == "3.12" || "${{ matrix.python-version }}" == "3.13" ]]; then
37-
pip install dist/${output##* }[full,test] --no-deps envpool
37+
# 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
3840
else
3941
pip install dist/${output##* }[full,test]
4042
fi

0 commit comments

Comments
 (0)