Skip to content

Commit 765a333

Browse files
committed
fix: Support Python 3.12 by relaxing numpy version constraint
The previous constraint numpy<1.26.0 prevented installation on Python 3.12 because numpy 1.24.x/1.25.x don't have pre-built wheels for Python 3.12 and building from source fails. numpy 1.26.x has full Python 3.12 support with pre-built wheels. Fixes #77, #104, #231
1 parent ed27b95 commit 765a333

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
{name = "resemble-ai", email = "engineering@resemble.ai"}
1010
]
1111
dependencies = [
12-
"numpy>=1.24.0,<1.26.0",
12+
"numpy>=1.24.0,<2.0.0",
1313
"librosa==0.11.0",
1414
"s3tokenizer",
1515
"torch==2.6.0",

0 commit comments

Comments
 (0)