Skip to content

Commit 7536dd5

Browse files
committed
Reduce numpy lower bound back to 1.21.2
1 parent 5dbef9f commit 7536dd5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ requires-python = ">=3.10"
1515
dependencies = [
1616
"torch>=2.4.0", # Problems before 2.4.0, especially with autogram.
1717
"quadprog>=0.1.9, != 0.1.10", # Doesn't work before 0.1.9, 0.1.10 is yanked
18-
"numpy>=1.23.0", # Does not work before 1.21. No python 3.10 wheel before 1.21.2. matplotlib (required for lightning) requires numpy >= 1.23.0.
18+
"numpy>=1.21.2", # Does not work before 1.21. No python 3.10 wheel before 1.21.2.
1919
"qpsolvers>=1.0.1", # Does not work before 1.0.1
2020
]
2121
classifiers = [
@@ -95,7 +95,7 @@ plot = [
9595
# Dependency group allowing to easily resolve version of the core dependencies to the lower bound.
9696
lower_bounds = [
9797
"torch==2.4.0",
98-
"numpy==1.23.0",
98+
"numpy==1.21.2",
9999
"quadprog==0.1.9",
100100
"qpsolvers==1.0.1",
101101
]

0 commit comments

Comments
 (0)