File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -125,9 +125,9 @@ jobs:
125
125
- os : ubuntu-latest
126
126
python-version : 3.8
127
127
dependencies : ' min'
128
- # NumPy 2.0
128
+ # NoGIL
129
129
- os : ubuntu-latest
130
- python-version : ' 3.12 '
130
+ python-version : ' 3.13-dev '
131
131
dependencies : ' dev'
132
132
exclude :
133
133
# x86 for Windows + Python<3.12
@@ -168,11 +168,18 @@ jobs:
168
168
submodules : recursive
169
169
fetch-depth : 0
170
170
- name : Set up Python ${{ matrix.python-version }}
171
+ if : " !endsWith(matrix.python-version, '-dev')"
171
172
uses : actions/setup-python@v5
172
173
with :
173
174
python-version : ${{ matrix.python-version }}
174
175
architecture : ${{ matrix.architecture }}
175
176
allow-prereleases : true
177
+ - name : Set up Python ${{ matrix.python-version }}
178
+ if : endsWith(matrix.python-version, '-dev')
179
+ uses :
deadsnakes/[email protected]
180
+ with :
181
+ python-version : ${{ matrix.python-version }}
182
+ nogil : true
176
183
- name : Display Python version
177
184
run : python -c "import sys; print(sys.version)"
178
185
- name : Install tox
You can’t perform that action at this time.
0 commit comments