From 6cf0d2eca111ff561a95d637d108e5badf10056d Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Thu, 25 Sep 2025 09:47:32 -0400 Subject: [PATCH] ci: fix misspelling that lead to code never being executed to verify free-threaded build --- .github/workflows/build-wheel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-wheel.yml b/.github/workflows/build-wheel.yml index 7a1da8bf20d..db006be3207 100644 --- a/.github/workflows/build-wheel.yml +++ b/.github/workflows/build-wheel.yml @@ -208,7 +208,7 @@ jobs: allow-prereleases: true - name: verify free-threaded build - if: endsWith(matrix.python-verison, 't') + if: endsWith(matrix.python-version, 't') run: python -c 'import sys; assert not sys._is_gil_enabled()' - name: Set up Python include paths