Replies: 1 comment 4 replies
-
This should no longer be required as poetry does not download wheels via pip, in almost all cases; poetry calls pip similar to this:
This is because poetry manages the download itself, into its own cache. Exceptions for this right now are:
These exceptions will eventually be handled outside of pip as well. Ref: Line 26 in bf18a8f |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How can I pass arguments to child process invocations of
pip
? Is there a free form field inpyproject.toml
that allows this?For example, how would I pass
--disable-pip-version-check
to allpip
calls?Another example, how would I pass
--trusted-host hostname
?Also asked on StackOverflow.
Beta Was this translation helpful? Give feedback.
All reactions