Skip to content

Commit ea1278b

Browse files
committed
Another fix for osx wheels
1 parent 41d4708 commit ea1278b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

ci/scripts/python_wheel_unix_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ is_free_threaded() {
106106

107107
if [ "${CHECK_UNITTESTS}" == "ON" ]; then
108108
# Install testing dependencies
109-
if [ "$(is_free_threaded)" = "ON" ] && [ "${PYTHON:-}" = "3.13" ]; then
109+
if [ "$(is_free_threaded)" = "ON" ] && [[ "${PYTHON:-}" == *"3.13"* ]]; then
110110
echo "Free-threaded Python 3.13 build detected"
111111
python -m pip install -U -r "${source_dir}/python/requirements-wheel-test-3.13t.txt"
112112
else

dev/tasks/python-wheels/github.osx.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ jobs:
131131
- name: Test Wheel
132132
env:
133133
PYTEST_ADDOPTS: "-k 'not test_cancellation'"
134-
PYTHON: "{{ python_version }}"
135134
PYTHON_GIL: {{ 0 if python_abi_tag.endswith('t') else 1 }}
136135
run: |
137136
$PYTHON -m venv test-env

0 commit comments

Comments
 (0)