From 75cdd03f28ec72c049ff41657e5871cac6ac8ac5 Mon Sep 17 00:00:00 2001 From: Charlie Lin Date: Sun, 20 Jul 2025 11:40:14 -0400 Subject: [PATCH] Exclude PYTHON_GIL=0 for now --- .github/workflows/test.yml | 2 +- .github/workflows/wheel.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b84611d..37dfb2a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,7 +41,7 @@ jobs: - name: Test (C extension) shell: bash run: | - PYTHON_GIL=0 pytest -v test + pytest -v test - name: Test (pure Python fallback) shell: bash diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index aa60b3c..febd05e 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -32,7 +32,7 @@ jobs: uses: pypa/cibuildwheel@v2.23.3 env: CIBW_TEST_REQUIRES: "pytest" - CIBW_TEST_COMMAND: "PYTHON_GIL=0 pytest {package}/test" + CIBW_TEST_COMMAND: "pytest {package}/test" CIBW_SKIP: "pp* cp38-macosx_*" CIBW_ENABLE: cpython-freerelease