36
36
strategy :
37
37
matrix :
38
38
os : [ubuntu-latest]
39
- python-version : [3.8 ]
39
+ python-version : [3.9 ]
40
40
steps :
41
41
- name : Print Concurrency Group
42
42
env :
@@ -119,14 +119,14 @@ jobs:
119
119
fail-fast : false
120
120
matrix :
121
121
os : [ubuntu-latest]
122
- python-version : [3.8, 3. 9, '3.10', 3.11, 3.12]
122
+ python-version : [3.9, '3.10', 3.11, 3.12]
123
123
include :
124
124
- os : macos-latest
125
- python-version : 3.8
125
+ python-version : 3.9
126
126
- os : macos-latest
127
127
python-version : 3.11
128
128
- os : windows-latest
129
- python-version : 3.8
129
+ python-version : 3.9
130
130
- os : windows-latest
131
131
python-version : 3.11
132
132
steps :
@@ -197,7 +197,7 @@ jobs:
197
197
fi
198
198
coverage3 combine
199
199
mv .coverage ./ci-artifact-data/opt.dat
200
- if : ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == 3.8 }}
200
+ if : ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == 3.9 }}
201
201
shell : bash
202
202
- uses : actions/upload-artifact@v4
203
203
with :
@@ -225,7 +225,7 @@ jobs:
225
225
fail-fast : false
226
226
matrix :
227
227
os : [ubuntu-latest]
228
- python-version : [3.8 , 3.11]
228
+ python-version : [3.9 , 3.11]
229
229
steps :
230
230
- uses : actions/checkout@v4
231
231
with :
@@ -290,30 +290,26 @@ jobs:
290
290
cd docs/_build/html
291
291
mkdir artifacts
292
292
tar -zcvf artifacts/tutorials.tar.gz --exclude=./artifacts .
293
- if : ${{ matrix.python-version == 3.8 && !startsWith(github.ref, 'refs/heads/stable') && !startsWith(github.base_ref, 'stable/') }}
293
+ if : ${{ matrix.python-version == 3.9 && !startsWith(github.ref, 'refs/heads/stable') && !startsWith(github.base_ref, 'stable/') }}
294
294
shell : bash
295
295
- name : Run upload stable tutorials
296
296
uses : actions/upload-artifact@v4
297
297
with :
298
298
name : tutorials-stable${{ matrix.python-version }}
299
299
path : docs/_build/html/artifacts/tutorials.tar.gz
300
- if : ${{ matrix.python-version == 3.8 && !startsWith(github.ref, 'refs/heads/stable') && !startsWith(github.base_ref, 'stable/') }}
300
+ if : ${{ matrix.python-version == 3.9 && !startsWith(github.ref, 'refs/heads/stable') && !startsWith(github.base_ref, 'stable/') }}
301
301
Deprecation_Messages_and_Coverage :
302
302
if : github.repository_owner == 'qiskit-community'
303
303
needs : [Checks, Optimization, Tutorials]
304
304
runs-on : ubuntu-latest
305
305
strategy :
306
306
matrix :
307
- python-version : [3.8 ]
307
+ python-version : [3.9 ]
308
308
steps :
309
309
- uses : actions/checkout@v4
310
310
- uses : actions/setup-python@v5
311
311
with :
312
312
python-version : ${{ matrix.python-version }}
313
- - uses : actions/download-artifact@v4
314
- with :
315
- name : ubuntu-latest-3.8
316
- path : /tmp/o38
317
313
- uses : actions/download-artifact@v4
318
314
with :
319
315
name : ubuntu-latest-3.9
@@ -332,16 +328,16 @@ jobs:
332
328
path : /tmp/o312
333
329
- uses : actions/download-artifact@v4
334
330
with :
335
- name : macos-latest-3.8
336
- path : /tmp/m38
331
+ name : macos-latest-3.9
332
+ path : /tmp/m39
337
333
- uses : actions/download-artifact@v4
338
334
with :
339
335
name : macos-latest-3.11
340
336
path : /tmp/m311
341
337
- uses : actions/download-artifact@v4
342
338
with :
343
- name : windows-latest-3.8
344
- path : /tmp/w38
339
+ name : windows-latest-3.9
340
+ path : /tmp/w39
345
341
- uses : actions/download-artifact@v4
346
342
with :
347
343
name : windows-latest-3.11
@@ -351,10 +347,10 @@ jobs:
351
347
shell : bash
352
348
- name : Combined Deprecation Messages
353
349
run : |
354
- sort -f -u /tmp/o38/opt.dep /tmp/ o39/opt.dep /tmp/o310/opt.dep /tmp/o311/opt.dep /tmp/o312/opt.dep /tmp/m38 /opt.dep /tmp/m311/opt.dep /tmp/w38 /opt.dep /tmp/w311/opt.dep || true
350
+ sort -f -u /tmp/o39/opt.dep /tmp/o310/opt.dep /tmp/o311/opt.dep /tmp/o312/opt.dep /tmp/m39 /opt.dep /tmp/m311/opt.dep /tmp/w39 /opt.dep /tmp/w311/opt.dep || true
355
351
shell : bash
356
352
- name : Coverage combine
357
- run : coverage3 combine /tmp/o38 /opt.dat
353
+ run : coverage3 combine /tmp/o39 /opt.dat
358
354
shell : bash
359
355
- name : Upload to Coveralls
360
356
env :
0 commit comments