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
{{ message }}
This repository was archived by the owner on Feb 20, 2026. It is now read-only.
After switching our project to be managed by uv we are still getting a dependency on pip, and it's through doppler-env:
However i don't believe that this project needs pip to be installed, since it's never imported? I think the pip dependency should probably be moved to an extras_require?
Steps to Reproduce
Add your doppler-env to a project managed with uv:
$ mkdir doppler-env-deps
$ cd doppler-env-deps
$ uv init
$ uv add doppler-env
Using CPython 3.11.13
Creating virtual environment at: .venv
Resolved 4 packages in 60ms
Prepared 2 packages in 89ms
Installed 3 packages in 8ms
+ doppler-env==0.3.1
+ pip==25.3
+ python-dotenv==1.2.1
Environment
Description
After switching our project to be managed by
uvwe are still getting a dependency onpip, and it's throughdoppler-env:However i don't believe that this project needs pip to be installed, since it's never imported? I think the pip dependency should probably be moved to an
extras_require?Steps to Reproduce
Add your doppler-env to a project managed with uv:
Expected Behavior
Don't depend on pip.
Screenshots