Skip to content

Commit 24f9389

Browse files
committed
Do not support 3.14 for now, until we drop 3.9 in a couple of days
1 parent fdc6d6e commit 24f9389

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
platform: [ubuntu-latest, windows-latest]
23-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
23+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2424
runs-on: ${{ matrix.platform }}
2525
env:
2626
IS_MAIN_PYTHON: ${{ matrix.python-version == '3.9' && matrix.platform == 'ubuntu-latest' }}
@@ -46,8 +46,6 @@ jobs:
4646
python3-gst-1.0 \
4747
libcairo2-dev \
4848
libgirepository-2.0-dev \
49-
libopenblas-dev \
50-
llvm-20-dev \
5149
pandoc \
5250
imagemagick
5351

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ classifiers = [
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
2424
"Programming Language :: Python :: 3.13",
25-
"Programming Language :: Python :: 3.14",
2625
"Programming Language :: Python :: Implementation :: CPython",
2726
]
2827
packages = [
@@ -52,8 +51,8 @@ lap = ">=0.5.12"
5251
mediafile = ">=0.12.0"
5352
musicbrainzngs = ">=0.4"
5453
numpy = [
55-
{ python = "<3.14", version = ">=2.0.2" },
56-
{ python = ">=3.14", version = ">=2.3.4" },
54+
{ python = "<3.13", version = ">=2.0.2" },
55+
{ python = ">=3.13", version = ">=2.3.4" },
5756
]
5857
platformdirs = ">=3.5.0"
5958
pyyaml = "*"
@@ -67,12 +66,12 @@ flask-cors = { version = "*", optional = true }
6766
langdetect = { version = "*", optional = true }
6867
librosa = { version = ">=0.11", optional = true }
6968
scipy = [ # for librosa
70-
{ python = "<3.14", version = ">=1.13.1", optional = true },
71-
{ python = ">=3.14", version = ">=1.16.1", optional = true },
69+
{ python = "<3.13", version = ">=1.13.1", optional = true },
70+
{ python = ">=3.13", version = ">=1.16.1", optional = true },
7271
]
7372
numba = [ # for librosa
74-
{ python = "<3.14", version = ">=0.60", optional = true },
75-
{ python = ">=3.14", version = ">=0.62.1", optional = true },
73+
{ python = "<3.13", version = ">=0.60", optional = true },
74+
{ python = ">=3.13", version = ">=0.62.1", optional = true },
7675
]
7776
mutagen = { version = ">=1.33", optional = true }
7877
Pillow = { version = "*", optional = true }

0 commit comments

Comments
 (0)