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
requirements[-dev].lock
I'd like to come from this:
. ├── pyproject.toml ├── README.md ├── requirements-dev.lock ├── requirements.lock └── src └── *
to this
. ├── pyproject.toml ├── README.md └── requirements ├── requirements-dev.lock └── requirements.lock ├── scripts │ └── entrypoint.sh └── src └── *
Is there any parameter I can fill in to Rye be able to generate lock-files to a specific path?
The text was updated successfully, but these errors were encountered:
Also, I wonder if it's possible to generate separate lock-files for per-feature?..
Upd: https://github.com/astral-sh/rye/blob/main/rye/src/sync.rs#L94-L95 — doesn't seems so.
Sorry, something went wrong.
No branches or pull requests
I'd like to come from this:
to this
Is there any parameter I can fill in to Rye be able to generate lock-files to a specific path?
The text was updated successfully, but these errors were encountered: