-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BLD: bump numpy min version to 1.15.4 #33729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
101e1ef
eaa73dd
366f3ba
4953d26
8a9d428
b73507f
1660057
6c9941a
33a7b3c
4bf813e
6ad5b92
0a6c0ce
b0155ba
949654a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ requires = [ | |
"setuptools", | ||
"wheel", | ||
"Cython>=0.29.16", # Note: sync with setup.py | ||
"numpy==1.13.3; python_version=='3.6' and platform_system!='AIX'", | ||
"numpy==1.14.5; python_version>='3.7' and platform_system!='AIX'", | ||
"numpy==1.15.4; python_version=='3.6' and platform_system!='AIX'", | ||
"numpy==1.15.4; python_version>='3.7' and platform_system!='AIX'", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't that be "numpy>=1.15.4"? I had issues installing pandas from source with numpy 1.18.5 installed. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't believe so. We build with the oldest supported NumPy that is compatible with the version of NumPy.
This also doesn't quite make sense. The idea behind pyproject.toml is to isolate the build environment. It shouldn't matter what version of NumPy was used to build pandas with, as long as it's binary compatible (IIUC). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, ignore my comment if that is how you make sure that your build with the oldest supported version. In my case I have numpy 1.18.5 installed and I want to use it to build pandas from source. However, it complains that the build requirements are note met.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. However, were you using python 3.8? There was an issue with us not having a line for py38. #34667 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, 3.7. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, I think I didn't quite understood how build isolation works. Thanks for your quick relies! |
||
"numpy==1.16.0; python_version=='3.6' and platform_system=='AIX'", | ||
"numpy==1.16.0; python_version>='3.7' and platform_system=='AIX'", | ||
] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should prob bump this just for consistency
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure. what to?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i guess 2019 ish, but maybe doesn't matter