From af2a0df7735c794faf224253484e7533cde44c2c Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Fri, 17 May 2024 08:46:04 -0400 Subject: [PATCH] Update .github/workflows/build.yml Co-authored-by: Victor Stinner --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e8acda1d..ffce66ef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,7 +63,9 @@ jobs: python-version: ${{ matrix.python }} nogil: true - name: Display Python version - run: python -VV + run: | + python -VV + python -c 'import sysconfig; print("Free threading?", "Yes" if sysconfig.get_config_var("Py_GIL_DISABLED") else "No")' - name: Install Tox and any other packages run: pip install tox - name: Run Tox