Skip to content

Commit 8e6d9e2

Browse files
committed
Add python 3.13.0
1 parent 232d788 commit 8e6d9e2

File tree

7 files changed

+35
-0
lines changed

7 files changed

+35
-0
lines changed

.github/workflows/build-cross-action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- 3.10.14
2323
- 3.11.9
2424
- 3.12.4
25+
- 3.13.0
2526
host:
2627
- x86_64
2728
- aarch64
@@ -119,6 +120,7 @@ jobs:
119120
- 3.10.14
120121
- 3.11.9
121122
- 3.12.4
123+
- 3.13.0
122124
arch:
123125
- x86_64
124126

@@ -174,6 +176,7 @@ jobs:
174176
- 3.10.14
175177
- 3.11.9
176178
- 3.12.4
179+
- 3.13.0
177180
arch:
178181
- amd64
179182
- x86

.github/workflows/build-native-action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- 3.10.14
2020
- 3.11.9
2121
- 3.12.4
22+
- 3.13.0
2223
host:
2324
- x86_64
2425
- aarch64
@@ -101,6 +102,7 @@ jobs:
101102
- 3.10.14
102103
- 3.11.9
103104
- 3.12.4
105+
- 3.13.0
104106
arch:
105107
- x86_64
106108

@@ -157,6 +159,7 @@ jobs:
157159
- 3.10.14
158160
- 3.11.9
159161
- 3.12.4
162+
- 3.13.0
160163
arch:
161164
- arm64
162165

@@ -212,6 +215,7 @@ jobs:
212215
- 3.10.14
213216
- 3.11.9
214217
- 3.12.4
218+
- 3.13.0
215219
arch:
216220
- amd64
217221
- x86

.github/workflows/deploy-build-action.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
- platform: linux-gnu
3030
arch: x86_64
3131
python: 3.12.4
32+
- platform: linux-gnu
33+
arch: x86_64
34+
python: 3.13.0
3235
- platform: linux-gnu
3336
arch: aarch64
3437
python: 3.10.14
@@ -38,6 +41,9 @@ jobs:
3841
- platform: linux-gnu
3942
arch: aarch64
4043
python: 3.12.4
44+
- platform: linux-gnu
45+
arch: aarch64
46+
python: 3.13.0
4147

4248
- platform: win
4349
arch: x86
@@ -48,6 +54,9 @@ jobs:
4854
- platform: win
4955
arch: x86
5056
python: 3.12.4
57+
- platform: win
58+
arch: x86
59+
python: 3.13.0
5160
- platform: win
5261
arch: amd64
5362
python: 3.10.14
@@ -57,6 +66,9 @@ jobs:
5766
- platform: win
5867
arch: amd64
5968
python: 3.12.4
69+
- platform: win
70+
arch: amd64
71+
python: 3.13.0
6072

6173
- platform: macos
6274
arch: x86_64
@@ -67,6 +79,9 @@ jobs:
6779
- platform: macos
6880
arch: x86_64
6981
python: 3.12.4
82+
- platform: macos
83+
arch: x86_64
84+
python: 3.13.0
7085
- platform: macos
7186
arch: arm64
7287
python: 3.10.14
@@ -76,6 +91,9 @@ jobs:
7691
- platform: macos
7792
arch: arm64
7893
python: 3.12.4
94+
- platform: macos
95+
arch: arm64
96+
python: 3.13.0
7997

8098
steps:
8199
- name: Download Artifacts

.github/workflows/test-fips-action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- 3.10.14
1717
- 3.11.9
1818
- 3.12.4
19+
- 3.13.0
1920
arch:
2021
- x86_64
2122
env:

relenv/build/darwin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,7 @@ def build_python(env, dirs, logfp):
138138
build = build.copy(
139139
version="3.12.4", checksum="c221421f3ba734daaf013dbdc7b48aa725cea18e"
140140
)
141+
build = build.copy(
142+
version="3.13.0", checksum="0f71dce4a3251460985a944bbd1d1b7db1660a91"
143+
)
141144
builds.add("darwin", builder=build)

relenv/build/linux.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -673,4 +673,7 @@ def build_python(env, dirs, logfp):
673673
build = build.copy(
674674
version="3.12.4", checksum="c221421f3ba734daaf013dbdc7b48aa725cea18e"
675675
)
676+
build = build.copy(
677+
version="3.13.0", checksum="0f71dce4a3251460985a944bbd1d1b7db1660a91"
678+
)
676679
builds.add("linux", builder=build)

relenv/build/windows.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,4 +216,7 @@ def runpip(pkg):
216216
build = build.copy(
217217
version="3.12.4", checksum="c221421f3ba734daaf013dbdc7b48aa725cea18e"
218218
)
219+
build = build.copy(
220+
version="3.13.0", checksum="0f71dce4a3251460985a944bbd1d1b7db1660a91"
221+
)
219222
builds.add("win32", builder=build)

0 commit comments

Comments
 (0)