Skip to content

Commit 519e44e

Browse files
authored
Update test_wheel.sh
1 parent dc15cbe commit 519e44e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

open_spiel/scripts/test_wheel.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,14 @@ if [[ "$MODE" = "full" ]]; then
6565
${PYBIN} -m pip install wheelhouse/open_spiel-*-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
6666
elif [[ "$OS" = "Darwin" && "$OS_PYTHON_VERSION" = "3.9" ]]; then
6767
${PYBIN} -m pip install wheelhouse/open_spiel-*-cp39-cp39-macosx_10_9_x86_64.whl
68-
else
68+
elif [[ "$OS" = "Darwin" && "$OS_PYTHON_VERSION" = "3.11" ]]; then
69+
# Run on the xlarge macs for arm64
6970
${PYBIN} -m pip install wheelhouse/open_spiel-*-cp311-cp311-macosx_11_0_arm64.whl
71+
elif [[ "$OS" = "Darwin" && "$OS_PYTHON_VERSION" = "3.12" ]]; then
72+
${PYBIN} -m pip install wheelhouse/open_spiel-*-cp313-cp313-macosx_10_13_x86_64.whl
73+
else
74+
echo "Config not found for full tests"
75+
exit -1
7076
fi
7177
fi
7278

0 commit comments

Comments
 (0)