-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
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
BLD: minor break ci/requirements-optional-pip.txt #22889
Conversation
I think we want that specific version of openpyxl, so it'd be |
Codecov Report
@@ Coverage Diff @@
## master #22889 +/- ##
==========================================
+ Coverage 92.18% 92.21% +0.02%
==========================================
Files 169 169
Lines 50830 50975 +145
==========================================
+ Hits 46860 47006 +146
+ Misses 3970 3969 -1
Continue to review full report at Codecov.
|
Correct. We need to update |
Thanks @datapythonista for looking into it. The with open("ci/requirements-optional-conda.txt") as f:
optional = [x.strip() for x in f.readlines()] so this should conclude the PR. |
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.
Cool, I didn't remember that. Lgtm. Thanks for the fix @minggli
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.
Sorry, I think I misunderstood. If I understand correctly, the conda file required one equal only (so you shouldn't add the extra one), and the script convert_deps.py
should be updated to make it two in the pip file. And after that generate the pip file.
Hello @minggli! Thanks for updating the PR.
|
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
It can surely be in a separate PR, but I think at some point it'd be nice to have a single function in the script that we call twice (one for required and one for optional), and that we unit test.
good point. thanks Marc. |
thanks. this is a dev requirement only. |
thanks for reviewing @jreback @datapythonista @TomAugspurger! |
git diff upstream/master -u -- "*.py" | flake8 --diff
When adding optional dependencies, below error appears from
To core dev, should we fix the version or simply specify lower bound (i.e. >=)?