-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CI Pin numpy 32 bit #50384
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 Pin numpy 32 bit #50384
Conversation
3804a04
to
344a7d7
Compare
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.
LGTM. Is there a issue about this, so it can be tracked and fixed for 2.0?
yup, here #50392 |
from #49777 it seems there a preference for not pinning numpy unless it's necessary, so I'll just xfail the test |
806fd20
to
104ebcf
Compare
Thanks @MarcoGorelli |
@@ -733,7 +736,7 @@ def test_constructor_cast(self): | |||
with pytest.raises(ValueError, match=msg): | |||
Series(["a", "b", "c"], dtype=float) | |||
|
|||
@pytest.mark.xfail(np_version_gte1p24, reason="GH49777") | |||
@pytest.mark.xfail(np_version_gte1p24 and not IS64, reason="GH49777") |
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.
@MarcoGorelli The test also fails on 64bit
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.
At least for me on openSUSE. I don't know why it does XPASS on your first commit.
doc/source/whatsnew/vX.X.X.rst
file if fixing a bug or adding a new feature.