Skip to content

Commit bea96ed

Browse files
committed
ci/release: add py3.12 and remove 3.7
- 3.7 reached enf of life in june 2023 https://devguide.python.org/versions/
1 parent 2616630 commit bea96ed

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/release-linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,8 @@ jobs:
1414
matrix:
1515
os: ["ubuntu"]
1616
arch: ["x86_64"]
17-
build: ["cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*", "pp37-*", "pp38-*", "pp39-*"]
17+
build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*", "pp38-*", "pp39-*"]
1818
include:
19-
- arch: "aarch64"
20-
os: "ubuntu"
21-
build: "cp37-manylinux*"
2219
- arch: "aarch64"
2320
os: "ubuntu"
2421
build: "cp38-manylinux*"
@@ -31,6 +28,9 @@ jobs:
3128
- arch: "aarch64"
3229
os: "ubuntu"
3330
build: "cp311-manylinux*"
31+
- arch: "aarch64"
32+
os: "ubuntu"
33+
build: "cp312-manylinux*"
3434

3535
steps:
3636
- uses: actions/checkout@v3

.github/workflows/release-osx-win.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,14 @@ jobs:
1212
name: Build ${{ matrix.os }} ${{ matrix.python-version }}
1313
strategy:
1414
matrix:
15-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1616
os: [macos-13, macos-14, windows-2019, windows-latest]
1717
include:
1818
- os: windows-2019
1919
toolset: ClangCl
2020
- os: windows-latest
2121
toolset: v143
22-
exclude:
23-
- os: macos-14
24-
python-version: 3.7
22+
2523
steps:
2624
- uses: actions/checkout@v2
2725
with:

0 commit comments

Comments
 (0)