-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Question about best practices for cross-compat with pip install -e .[dev]
(pre PEP 735 support)
#11093
Comments
We'll likely support |
thanks for that tip as well! The constraints I'd like to have here (if possible) are:
as a last question, do you have any caution against the pattern I suggested above? (and then feel free to close this) |
1 similar comment
thanks for that tip as well! The constraints I'd like to have here (if possible) are:
as a last question, do you have any caution against the pattern I suggested above? (and then feel free to close this) |
What you have above seems reasonable... The downsides are just:
But otherwise, I think you're on the right track in understanding the various options. |
Thanks a bunch 🙏 |
Question
I ❤️ uv and want to be able to just run
uv sync
in all of my projects and bring along all of the dev dependencies (let's assume nouv.lock
exists yet). However, in some cases, I also need to work with others who don't use uv and want to be able to run the classicpip install -e .[dev]
... and if I'm not mistaken, pip does not yet support PEP 735? (pypa/pip#12963)My question is how best to accomplish this. I know I can just use
uv sync --extra dev
(but would like to just useuv sync
).Would this be the best way to accomplish this until pip supports dependency groups?
other tips?
Platform
No response
Version
No response
The text was updated successfully, but these errors were encountered: