You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been trying to understand why numpy 1.26 is being installed on my machine while pip installing some packages.
And I've traced it to chainconsumer I believe.
For some reason the wheel file ( from pypi) has this:
Requires-Python: >=3.10,<3.13
Requires-Dist: matplotlib (>=3.6.0,<4.0.0)
Requires-Dist: numpy (>=1.23.0,<2.0.0)
While the pyproject.tom has this line:
numpy = "^1.23.0"
Actually didn't know, but apparently this corresponds to numpy (>=1.23.0,<2.0.0)
Is this actually intended ?
Because I ran chainconsumer tests and they all pass fine with numpy 2.1...
Thanks
The text was updated successfully, but these errors were encountered:
Hi,
I've been trying to understand why numpy 1.26 is being installed on my machine while pip installing some packages.
And I've traced it to chainconsumer I believe.
For some reason the wheel file ( from pypi) has this:
Requires-Python: >=3.10,<3.13
Requires-Dist: matplotlib (>=3.6.0,<4.0.0)
Requires-Dist: numpy (>=1.23.0,<2.0.0)
While the pyproject.tom has this line:
numpy = "^1.23.0"
Actually didn't know, but apparently this corresponds to numpy (>=1.23.0,<2.0.0)
Is this actually intended ?
Because I ran chainconsumer tests and they all pass fine with numpy 2.1...
Thanks
The text was updated successfully, but these errors were encountered: