8000 MNT Use PYTHON_GIL=0 only at test time to avoid interference with conda by lesteve · Pull Request #31341 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

MNT Use PYTHON_GIL=0 only at test time to avoid interference with conda #31341

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ jobs:
)
matrix:
pylatest_free_threaded:
PYTHON_GIL: '0'
DISTRIB: 'conda-free-threaded'
LOCK_FILE: './build_tools/azure/pylatest_free_threaded_linux-64_conda.lock'
COVERAGE: 'false'
Expand Down
8 changes: 8 additions & 0 deletions build_tools/azure/test_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ else
echo "Could not inspect CPU architecture."
fi

if [[ "$DISTRIB" == "conda-free-threaded" ]]; then
# Make sure that GIL is disabled even when importing extensions that have
# not declared free-threaded compatibility. This can be removed when numpy,
# scipy and scikit-learn extensions all have declared free-threaded
# compatibility.
export PYTHON_GIL=0
fi

TEST_CMD="$TEST_CMD --pyargs sklearn"

set -x
Expand Down
0