Mercurial > p > roundup > code
changeset 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 | d73f93c7a98d |
| children | 1357dfcb81eb |
| files | .github/workflows/ci-test.yml |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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__);"
