We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I submit a proposal to allow exporting project dependencies as a wheelhouse 👋
This is useful for reproducibility (ref: pip/repeatable-installs).
Actually with poetry we need to do this:
$ poetry export --format requirements.txt --output wheelhouse/requirements.txt $ poetry run pip wheel --no-deps --wheel-dir wheelhouse/ --requirement wheelhouse/requirements.txt
For exemple, this can be achieve with:
$ poetry bundle wheels /path/to/wheelhouse
I don't know if this plugin should handle this use case, I'm open to feedback 🙂
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I submit a proposal to allow exporting project dependencies as a wheelhouse 👋
This is useful for reproducibility (ref: pip/repeatable-installs).
Actually with poetry we need to do this:
$ poetry export --format requirements.txt --output wheelhouse/requirements.txt $ poetry run pip wheel --no-deps --wheel-dir wheelhouse/ --requirement wheelhouse/requirements.txt
For exemple, this can be achieve with:
I don't know if this plugin should handle this use case, I'm open to feedback 🙂
The text was updated successfully, but these errors were encountered: