-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CI temporarily pin numpy #50356
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
CI temporarily pin numpy #50356
Conversation
This reverts commit dcaf7ce.
I guess you have to pin in the asv config as well? |
not strictly necessary for CI, as |
@@ -41,7 +41,7 @@ | |||
// pip (with all the conda available packages installed first, | |||
// followed by the pip installed packages). | |||
"matrix": { | |||
"numpy": [], | |||
"numpy": ["1.23.5"], // https://github.com/pandas-dev/pandas/pull/50356 |
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.
asv doesn't allow pinning with <
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.
Yeah I'd just go with the newest version as well.
thx @MarcoGorelli |
Could we remove numba in some of the envs instead? Because not testing with the latest numpy anywhere doesn't seem like a good situation? |
the 311-dev job tests with the latest (nightly) numpy, and that one doesn't have numba perhaps let's wait a few days to see if there's any progress, and if not just remove numba from CI 'til they resolve it? |
Backport PR #50356: CI temporarily pin numpy Co-authored-by: Marco Edward Gorelli <[email protected]>
This reverts commit f31da23.
* Revert "CI: Temporarily pin numpy (pandas-dev#50356)" This reverts commit f31da23. * maybe fixup test collection * remove np_version_gte1p24 Co-authored-by: MarcoGorelli <>
* Revert "CI: Temporarily pin numpy (pandas-dev#50356)" This reverts commit f31da23. * maybe fixup test collection * remove np_version_gte1p24 Co-authored-by: MarcoGorelli <>
Looks like numba is failing with the latest numpy release numba/numba#8615
Let's temporarily pin numpy to get CI green, and then lift the pin once it's solved in numba?