-
Notifications
You must be signed in to change notification settings - Fork 0
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
Generate Pypi-compatible indexes for our wheelhouses #114
Comments
Well, that does not work with
references: psf/requests#2732 |
It could be possible to generate the index, and then serve them locally using a local http.server:
We must then add a symbolic link to the wheelhouse inside of that folder. |
+1, this would be a big help so that we can effectively use My current workarounds are to either download the necessary wheels to my project and edit the pyproject.toml file to point the dependency to the cc wheel or build the lock file on a local environment and |
I think Plus, poetry managed repository can be installed by pip with PEP-517. |
Using:
https://pypi.org/project/dumb-pypi/
We can generate a plain static file local Pypi index:
To use that index:
What’s the significance of this ? We can generate and serve serverless instances of a local pypi. That means those can be used by tools that don’t support
--find-links
to point to a local directory containing wheels and only support pypi-style repositories (looking at you,poetry
)The text was updated successfully, but these errors were encountered: