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
Low priority!
We should switch over from pip to uv https://docs.astral.sh/uv/
It should be a fairly easy switch, we'll just need to uv sync the directory and commit the lock file.
uv sync
Then whenever we want to add a project to requirements we'll just need to use uv add instead of pip install.
uv add
pip install
We'll have to adjust our docker container to also use uv or convert the lockfile on the fly with uv export --format requirements-txt.
uv export --format requirements-txt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Low priority!
We should switch over from pip to uv
https://docs.astral.sh/uv/
It should be a fairly easy switch, we'll just need to
uv sync
the directory and commit the lock file.Then whenever we want to add a project to requirements we'll just need to use
uv add
instead ofpip install
.We'll have to adjust our docker container to also use uv or convert the lockfile on the fly with
uv export --format requirements-txt
.The text was updated successfully, but these errors were encountered: