Skip to content

Commit 051ae11

Browse files
committed
Add Python 3.14 support. Update CI/CD.
1 parent 27e35c8 commit 051ae11

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Build package
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- uses: pdm-project/setup-pdm@v4
2525
with:
2626
cache: true
@@ -57,19 +57,21 @@ jobs:
5757
strategy:
5858
matrix:
5959
os: [Ubuntu, Windows, macOS]
60-
python-version: ["3.10", "3.11", "3.12", "3.13"]
60+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
6161
numpy-version: [numpy==1.*, numpy==2.*]
6262
exclude:
6363
- python-version: "3.13"
6464
numpy-version: numpy==1.*
65+
- python-version: "3.14"
66+
numpy-version: numpy==1.*
6567
steps:
66-
- uses: actions/checkout@v4
68+
- uses: actions/checkout@v5
6769
- name: Set up Python ${{ matrix.python-version }}
6870
uses: actions/setup-python@v5
6971
with:
7072
python-version: ${{ matrix.python-version }}
7173
cache: 'pip'
72-
- uses: actions/download-artifact@v4
74+
- uses: actions/download-artifact@v5
7375
with:
7476
name: wheels
7577
path: ./dist

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
id-token: write
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- uses: pdm-project/setup-pdm@v4
2424
with:
2525
python-version: "3.12"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
2323
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
2425
"Topic :: Multimedia :: Sound/Audio :: Speech",
2526
"Topic :: Scientific/Engineering",
2627
"Topic :: Scientific/Engineering :: Artificial Intelligence",

0 commit comments

Comments
 (0)