-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CI: Fix failing CI for test_alignment_deprecation_many_inputs #45597
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
Conversation
LGTM pending greenish |
@meeseeksdev backport 1.4.x |
…eprecation_many_inputs
Something went wrong ... Please have a look at my logs. |
…_many_inputs (#45600) Co-authored-by: Matthew Roeschke <[email protected]>
@@ -9,7 +9,7 @@ | |||
np_version_under1p19 = _nlv < Version("1.19") | |||
np_version_under1p20 = _nlv < Version("1.20") | |||
np_version_under1p22 = _nlv < Version("1.22") | |||
np_version_is1p22 = _nlv == Version("1.22") | |||
np_version_gte1p22 = _nlv >= Version("1.22") |
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.
is this now the same as not np_version_under1p22
?
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.
Yup that would be the same.
xref #45182
#45179 was a little too strict since numpy just had a point release.
This should (hopefully) get us to green @jbrockmendel