Closed irishgordo closed 4 years ago
Hi!
The stripped down reproduction case for this seems to be:
$ pip download --only-binary=:all: hstspreload
ERROR: Could not find a version that satisfies the requirement hstspreload (from versions: none)
ERROR: No matching distribution found for hstspreload
At this point I'm assuming hstspreload doesn't ship binary wheels, which might be something to figure out on that project's side…
I'm assuming hstspreload doesn't ship binary wheels
Yup, there's no wheel on PyPI: https://pypi.org/project/hstspreload/2020.3.4/#files
You can use the --no-binary
to exclude hstspreload
from deps that shouldn't be downloaded as binaries:
$ pip download --only-binary=:all: --no-binary=hstspreload httpx -d deps
I'm able to run this without issues. :-)
Going to close this off for now, feel free to follow up on the hstspreload
repo if you'd like to bring wheels there.
Thanks!
@florimondmanca - rad! thank ya for such a super quick response! I'll dig into it and may reach out to the maintainers of hstspreload!
Thanks for such a comprehensive but concise report, and for the good vibes! 👍😃
Hey there!
I really dig this library it's super awesome!
I have been running into an issue performing an install with an internal dependency within httpx:
While running this:
And another variation that's been leveraged is:
Y'all are stellar! Thanks for any input / feedback!