Skip to content

Commit 88e0a3d

Browse files
committed
chores: bound numpy depending on python version
1 parent d293ce1 commit 88e0a3d

File tree

2 files changed

+361
-27
lines changed

2 files changed

+361
-27
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ classifiers = [
3131
dependencies = [
3232
"einops",
3333
"matplotlib",
34-
"numpy>=1.21.0,<2.0",
34+
"numpy >= 1.24.4; python_version == '3.8.*'",
35+
"numpy >= 2.0.2; python_version == '3.9.*'",
36+
"numpy >= 2.2.4; python_version >= '3.10'",
3537
"pandas",
3638
"pybind11>=2.6.0", # For --no-build-isolation.
3739
"pytorch-msssim",

0 commit comments

Comments
 (0)