-
Let's say my projects depends on yarl. It then produces something like this in lockfile:
It then will at least download all of them. Which can't be done in my environment for regulation reasons. How can I say to poetry: "download and install only wheels that belong to linux/darwin"?. In pip I could I guess write this in
|
Beta Was this translation helpful? Give feedback.
Answered by
radoering
Oct 20, 2024
Replies: 1 comment 3 replies
-
We don't download all the wheels, just the info about their availability on the index |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We only download all wheels if the index does not provide hashes. If your index does not provide hashes, you cannot avoid downloading all wheels.
Apart from that, there is #7935, which is only about the Python version, and #4952 with #4956, which is somewhat related. But nothing of that is expected in the near future.