@@ -16,12 +16,12 @@ jobs:
16
16
os :
17
17
- ubuntu-latest
18
18
python-version :
19
- - ' 3.12 '
19
+ - ' 3.13 '
20
20
pip-version :
21
- - ' 24.2 '
21
+ - ' 25.0 '
22
22
setuptools-version :
23
- - ' 75.8 '
24
- - ' 75.7 '
23
+ - ' 76.0 '
24
+ - ' 75.9 '
25
25
- ' 74.1'
26
26
- ' 73.0'
27
27
- ' 72.1'
@@ -64,14 +64,30 @@ jobs:
64
64
echo -e '\nEOF'
65
65
} >> "$GITHUB_OUTPUT"
66
66
67
+ build-ubuntu-py313 :
68
+ uses : ./.github/workflows/template.yml
69
+ with :
70
+ os : ubuntu-latest
71
+ python-version : ' 3.13'
72
+ deploy : ${{ github.event_name == 'push' }}
73
+ deploy-pip : ' 25.0'
74
+ deploy-setuptools : ' 76.0'
75
+ exclude : ${{ needs.read-exclusions.outputs.BUILD_EXCLUSIONS }}
76
+ secrets : inherit
77
+ needs : [ read-exclusions ]
78
+ build-macos-py313 :
79
+ uses : ./.github/workflows/template.yml
80
+ with :
81
+ os : macos-13
82
+ python-version : ' 3.13'
83
+ exclude : ${{ needs.read-exclusions.outputs.BUILD_EXCLUSIONS }}
84
+ secrets : inherit
85
+ needs : [ build-ubuntu-py313, read-exclusions ]
67
86
build-ubuntu-py312 :
68
87
uses : ./.github/workflows/template.yml
69
88
with :
70
89
os : ubuntu-latest
71
90
python-version : ' 3.12'
72
- deploy : ${{ github.event_name == 'push' }}
73
- deploy-pip : ' 24.2'
74
- deploy-setuptools : ' 75.8'
75
91
exclude : ${{ needs.read-exclusions.outputs.BUILD_EXCLUSIONS }}
76
92
secrets : inherit
77
93
needs : [ read-exclusions ]
@@ -147,19 +163,19 @@ jobs:
147
163
exclude : ${{ needs.read-exclusions.outputs.BUILD_EXCLUSIONS }}
148
164
secrets : inherit
149
165
needs : [ build-ubuntu-py38, read-exclusions ]
150
- build-ubuntu-py313 :
166
+ build-ubuntu-py314 :
151
167
uses : ./.github/workflows/template.yml
152
168
with :
153
169
os : ubuntu-latest
154
- python-version : ' 3.13 '
170
+ python-version : ' 3.14-dev '
155
171
exclude : ${{ needs.read-exclusions.outputs.BUILD_EXCLUSIONS }}
156
172
secrets : inherit
157
173
needs : [ read-exclusions ]
158
- build-macos-py313 :
174
+ build-macos-py314 :
159
175
uses : ./.github/workflows/template.yml
160
176
with :
161
177
os : macos-13
162
- python-version : ' 3.13 '
178
+ python-version : ' 3.14-dev '
163
179
exclude : ${{ needs.read-exclusions.outputs.BUILD_EXCLUSIONS }}
164
180
secrets : inherit
165
181
needs : [ build-ubuntu-py313, read-exclusions ]
@@ -168,6 +184,8 @@ jobs:
168
184
runs-on : ubuntu-latest
169
185
name : Build Summary
170
186
needs :
187
+ - build-ubuntu-py314
188
+ - build-macos-py314
171
189
- build-ubuntu-py313
172
190
- build-macos-py313
173
191
- build-ubuntu-py312
0 commit comments