Skip to content

Commit

Permalink
Update .github/workflows/build.yml
Browse files Browse the repository at this point in the history
Co-authored-by: Victor Stinner <[email protected]>
  • Loading branch information
corona10 and vstinner authored May 17, 2024
1 parent 187d84e commit af2a0df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit af2a0df

Please sign in to comment.