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
Should dependency group names be normalized with underscores converted to hyphens?
Example:
uv init example
cd example
uv add --group some_group ruff
grep 'some.group' pyproject.toml
with output:
some-group = [
I'm looking into porting a project using Poetry and Nox, where Nox session names and Poetry group names use underscores. These names are exposed in noxfile.py and on the nox command line. It's looking like these names might need to switch to using hyphens in order to use uv dependency groups. Is this expected?