Skip to content

Commit 46f729a

Browse files
authored
Add Python 3.14 support (#122)
1 parent 7863e45 commit 46f729a

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/publish.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,62 +18,62 @@ jobs:
1818
target: x86_64
1919
manylinux: auto
2020
python-architecture: x64
21-
interpreter: 3.9 3.10 3.11 3.12 3.13
21+
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
2222
- os: windows
2323
ls: dir
2424
target: i686
2525
manylinux: auto
2626
python-architecture: x86
27-
interpreter: 3.9 3.10 3.11 3.12 3.13
27+
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
2828
- os: macos
2929
target: x86_64
3030
manylinux: auto
3131
python-architecture: x64
32-
interpreter: 3.9 3.10 3.11 3.12 3.13 pypy3.9
32+
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14 pypy3.9
3333
- os: macos
3434
target: aarch64
3535
manylinux: auto
3636
python-architecture: x64
37-
interpreter: 3.9 3.10 3.11 3.12 3.13
37+
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
3838
# Build all manylinux targets on 2_28
3939
# https://github.com/pypa/manylinux#readme
4040
# https://github.com/PyO3/maturin-action/blob/135c746/src/index.ts#L33
4141
- os: ubuntu
4242
target: x86_64
4343
manylinux: 2_28
4444
python-architecture: x64
45-
interpreter: 3.9 3.10 3.11 3.12 3.13 pypy3.9
45+
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14 pypy3.9
4646
- os: ubuntu
4747
target: aarch64
4848
manylinux: 2_28
4949
python-architecture: x64
50-
interpreter: 3.9 3.10 3.11 3.12 3.13 pypy3.9
50+
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14 pypy3.9
5151
- os: ubuntu
5252
target: armv7
5353
manylinux: 2_28
5454
python-architecture: x64
55-
interpreter: 3.9 3.10 3.11 3.12 3.13
55+
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
5656
- os: ubuntu
5757
target: ppc64le
5858
manylinux: 2_28
5959
python-architecture: x64
60-
interpreter: 3.9 3.10 3.11 3.12 3.13
60+
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
6161
- os: ubuntu
6262
target: s390x
6363
manylinux: 2_28
6464
python-architecture: x64
65-
interpreter: 3.9 3.10 3.11 3.12 3.13
65+
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
6666
# musllinux - https://musl.libc.org/about.html
6767
- os: ubuntu
6868
target: x86_64
6969
manylinux: musllinux_1_1 # /!\ value used in steps conditions below.
7070
python-architecture: x64
71-
interpreter: 3.9 3.10 3.11 3.12 3.13 pypy3.9
71+
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14 pypy3.9
7272
- os: ubuntu
7373
target: aarch64
7474
manylinux: musllinux_1_1
7575
python-architecture: x64
76-
interpreter: 3.9 3.10 3.11 3.12 3.13 pypy3.9
76+
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14 pypy3.9
7777

7878
runs-on: ${{ matrix.os }}-latest
7979
steps:

0 commit comments

Comments
 (0)