Skip to content

Commit cad274f

Browse files
committed
Update pipeline/workflow Python versions
1 parent 6740597 commit cad274f

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/ci_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: push
44

55
jobs:
66
all_checks:
7-
name: Run all tests, lints, etc. (Python 3.11)
7+
name: Run all tests, lints, etc. (Python 3.12)
88
runs-on: ubuntu-latest
99
if: "!contains(github.event.head_commit.message, '[skip ci]')"
1010

@@ -15,7 +15,7 @@ jobs:
1515
- name: Install Python
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: '3.11'
18+
python-version: '3.12'
1919
cache: 'pip'
2020
cache-dependency-path: |
2121
requirements-ci.txt
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ubuntu-latest
6464
strategy:
6565
matrix:
66-
python: ['3.8', '3.9', '3.10', '3.12']
66+
python: ['3.9', '3.10', '3.11', '3.13']
6767
if: "!contains(github.event.head_commit.message, '[skip ci]')"
6868

6969
steps:

azure-pipelines.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ stages:
2323
steps:
2424
- task: UsePythonVersion@0
2525
inputs:
26-
versionSpec: '3.11'
26+
versionSpec: '3.12'
2727

2828
- task: Cache@2
2929
inputs:
@@ -55,7 +55,7 @@ stages:
5555
steps:
5656
- task: UsePythonVersion@0
5757
inputs:
58-
versionSpec: '3.11'
58+
versionSpec: '3.12'
5959

6060
- task: Cache@2
6161
inputs:
@@ -79,8 +79,6 @@ stages:
7979
- template: azure-coretest.yml
8080
parameters:
8181
pythons:
82-
py38:
83-
spec: '3.8'
8482
py39:
8583
spec: '3.9'
8684
py310:
@@ -89,15 +87,15 @@ stages:
8987
spec: '3.11'
9088
py312:
9189
spec: '3.12'
90+
py313:
91+
spec: '3.13'
9292
pypy3:
9393
spec: 'pypy3'
9494
platforms: [linux]
9595

9696
- template: azure-coretest.yml
9797
parameters:
9898
pythons:
99-
py38:
100-
spec: '3.8'
10199
py39:
102100
spec: '3.9'
103101
py310:
@@ -106,6 +104,8 @@ stages:
106104
spec: '3.11'
107105
py312:
108106
spec: '3.12'
107+
py313:
108+
spec: '3.13'
109109
platforms: [windows, macOs]
110110

111111
- template: azure-sdisttest.yml
@@ -124,7 +124,7 @@ stages:
124124
steps:
125125
- task: UsePythonVersion@0
126126
inputs:
127-
versionSpec: '3.11'
127+
versionSpec: '3.12'
128128

129129
- task: Cache@2
130130
inputs:
@@ -150,7 +150,7 @@ stages:
150150
steps:
151151
- task: UsePythonVersion@0
152152
inputs:
153-
versionSpec: '3.11'
153+
versionSpec: '3.12'
154154

155155
- task: Cache@2
156156
inputs:
@@ -176,7 +176,7 @@ stages:
176176
steps:
177177
- task: UsePythonVersion@0
178178
inputs:
179-
versionSpec: '3.11'
179+
versionSpec: '3.12'
180180

181181
- script: pip install -r requirements-ci.txt
182182
displayName: Install CI requirements
@@ -205,7 +205,7 @@ stages:
205205
steps:
206206
- task: UsePythonVersion@0
207207
inputs:
208-
versionSpec: '3.11'
208+
versionSpec: '3.12'
209209

210210
- task: Cache@2
211211
inputs:
@@ -231,7 +231,7 @@ stages:
231231
steps:
232232
- task: UsePythonVersion@0
233233
inputs:
234-
versionSpec: '3.11'
234+
versionSpec: '3.12'
235235

236236
- task: Cache@2
237237
inputs:
@@ -263,7 +263,7 @@ stages:
263263
steps:
264264
- task: UsePythonVersion@0
265265
inputs:
266-
versionSpec: '3.11'
266+
versionSpec: '3.12'
267267

268268
- task: Cache@2
269269
inputs:

azure-sdisttest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- task: UsePythonVersion@0
1313
inputs:
14-
versionSpec: '3.11'
14+
versionSpec: '3.12'
1515

1616
- task: Cache@2
1717
inputs:

0 commit comments

Comments
 (0)