-
Notifications
You must be signed in to change notification settings - Fork 753
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
Wrong output of uv pip compile #7157
Comments
If present, we read from the |
Thanks! Upgrading package is definitely something I want to do in the future, but for now I added this setting in |
In case we are using Here is the error:
Maybe something like |
Oh actually I found this solution #4422 (comment). |
So I'm planning to add lock file to my project and while comparing existing solutions I encountered a difference in
pip-compile
(frompip-tools
) anduv pip compile
results. The result makes me think it is the bug on uv's side.Consider the following requirements file:
requirements.in
After comparing
pip-compile
anduv pip compile requirements.in -o requirements.txt
, there is one more entry in uv's output, namely:If we check
flower
's source code,futures
is required only for python 2, so it should not appear in uv's output, since it only works with python 3.7+.The text was updated successfully, but these errors were encountered: