You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When uv pip install is passed poetry.lock or Pipfile.lock (and any optional dependency groups, or extras) instead of requirements.txt, it could attempt to install these in the uv environment. I can only speak for myself when I say this will speed up adoption of uv in some contexts we are using it, such as executing local tests or Docker pipelines.
The text was updated successfully, but these errors were encountered:
It might not be perfect, but it would be really helpful to have at least an attempt to import from pipenv configuration. You can get close with uv add -r <(pipenv requirements) but then all package versions are pinned because pipenv requirements is based on the lock file. The other piece would be reading from the Pipfile to specify the dependencies.
When
uv pip install
is passedpoetry.lock
orPipfile.lock
(and any optional dependency groups, or extras) instead ofrequirements.txt
, it could attempt to install these in the uv environment. I can only speak for myself when I say this will speed up adoption of uv in some contexts we are using it, such as executing local tests or Docker pipelines.The text was updated successfully, but these errors were encountered: