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 7c9b1de commit fb0628aCopy full SHA for fb0628a
ci/scripts/python_wheel_unix_test.sh
@@ -107,10 +107,10 @@ is_free_threaded() {
107
108
if [ "${CHECK_UNITTESTS}" == "ON" ]; then
109
# Install testing dependencies
110
- if [ $(is_free_threaded) = "ON" ]; then
+ if [ "$(is_free_threaded)" = "ON" ]; then
111
echo "Free-threaded Python build detected"
112
python -m pip install --no-build-isolation -r "${source_dir}/python/requirements-wheel-test-3.13t.txt"
113
- elif [ $(is_free_threaded) = "OFF" ]; then
+ elif [ "$(is_free_threaded)" = "OFF" ]; then
114
echo "Regular Python build detected"
115
python -m pip install -U -r "${source_dir}/python/requirements-wheel-test.txt"
116
fi
0 commit comments