Mercurial > p > roundup > code
diff .github/workflows/ci-test.yml @ 8335:cf757cd416dc
chore: fix label for Py_GIL_DISABLED python config var.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 19 Jun 2025 16:05:22 -0400 |
| parents | 1a9889d08224 |
| children | b38327f15450 |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Thu Jun 19 15:57:12 2025 -0400 +++ b/.github/workflows/ci-test.yml Thu Jun 19 16:05:22 2025 -0400 @@ -133,7 +133,7 @@ - name: Display Python and key module versions run: | python --version --version - python -c "import sysconfig; print('GIL IS ENABLED: ', sysconfig.get_config_vars().get('Py_GIL_DISABLED', 'not defined'));" + python -c "import sysconfig; print('GIL IS DISABLED: ', sysconfig.get_config_vars().get('Py_GIL_DISABLED', 'not defined'));" python -c "import sqlite3; print('sqlite version: ', sqlite3.sqlite_version)" python -c "import setuptools; print('setuptools version: ', setuptools.__version__);"
