-
-
Notifications
You must be signed in to change notification settings - Fork 38
Support extras in custom urls [integration] #257
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
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
| ) | ||
|
|
||
| async def add_requirement_inner( | ||
| async def add_requirement_inner( # noqa: C901 |
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.
Out of curiosity, what's C901?
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.
It is Function is too complex (C901). It is too giant function now and we'll need to refactor it later.
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.
Thanks!
|
Thanks for the review! |
Close #254
Close #205
This changes the behavior of micropip.install to install
extraswhen the requirement is given informat.
I noticed that we already support
pkg @ https://pkg.url.com/pkg.whlsyntax thanks topackaging, but we were not handling the extras correctly. This PR fixes it.