-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
TST Fixes test and mis-matched pandas version #20149
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
circle ci is failing with:
but I fail to understand why this version spec cannot be resolved... based on https://docs.conda.io/projects/conda-build/en/latest/resources/package-spec.html#package-match-specifications it seems that |
Also why did this test not fail in the #20143 PR itself? |
For the circleci build, For |
I suspect the failure has to do with: numpy==1.14.5
pandas==0.25.0 -> numpy[version='>=1.13.3,<2.0a0|>=1.14.6,<2.0a0'] where |
Just to clarify: the pandas version was set in |
pandas 0.25 added support for the
|
As the difference between numpy 1.14.5 and 1.14.6 is one single bugfix release, I'd go for option 2: pandas 0.25.0 and numpy 1.14.6. |
@lorentzenchr @thomasjpfan , Thanks for your answers. |
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!
I merged because I was under the impression that everyone agreed this was a good small fix. |
Follow up to #20143
This PR fixes the test that catches mismatched versions between the readme and
_min_dependencies
.CC @glemaitre @ogrisel