File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -71,12 +71,12 @@ jobs:
71
71
experimental : [ false ]
72
72
73
73
include :
74
- # example: if 3.13 fails the jobs still succeeds
74
+ # example: if this version fails the jobs still succeeds
75
75
# allow-prereleases in setup-python allows alpha/beta
76
- # releases to run
77
- # - python-version: 3.13
78
- # os: ubuntu-22 .04
79
- # experimental: true
76
+ # releases to run. Also allow free threaded python testing
77
+ - python-version : 3.13t
78
+ os : ubuntu-24 .04
79
+ experimental : true
80
80
81
81
# 3.7 not available on new 22.04 runners, so run on 22.04 ubuntu
82
82
- python-version : 3.7
@@ -132,7 +132,8 @@ jobs:
132
132
# Display the Python version being used
133
133
- name : Display Python and key module versions
134
134
run : |
135
- python -c "import sys; print('python version: ', sys.version)"
135
+ python --version --version
136
+ python -c "import sysconfig; print('GIL IS ENABLED: ', sysconfig.get_config_vars().get('Py_GIL_DISABLED', 'not defined'));"
136
137
python -c "import sqlite3; print('sqlite version: ', sqlite3.sqlite_version)"
137
138
python -c "import setuptools; print('setuptools version: ', setuptools.__version__);"
138
139
You can’t perform that action at this time.
0 commit comments