-
-
Notifications
You must be signed in to change notification settings - Fork 28
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
Optional dependencies can not be combined with .whl URIs #205
Comments
It seems to me like a reasonable feature request, particularly since pip implements an analogous feature. It is a bit horrible to write I can't say what workarounds people use maybe @agriyakhetarpal might know. |
Maybe we can allow putting extra suffix for |
The interaction of those brackets with URIs is a bit odd in general -- and unlike pip, we're in an environment where explicit Python syntax is an option. So if combining this turns out to be problematic, it may be an option to introduce The micropip documentation also lists a syntax |
Huh, I think that we never supported this syntax. |
To ease testing of unreleased versions, I'm publishing a wheel of any main branch build of my project aiocoap, so users can:
Frequently, users need to install dependencies, so my recommendation outside of development is that they do
However, those can't be combined:
(tested on https://pyodide.org/en/latest/console.html)
As far as I understand, this is a shortcoming of micropip, which is not present in pip (can't compare directly because AIU pip doesn't do wheels from URIs, but
pip install 'dist/aiocoap-0.4.12.post0-py3-none-any.whl[oscore]'
works).Is this something that might be added, or is there a known workaround?
The text was updated successfully, but these errors were encountered: