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
Two common groups are used by default:
"main", an implicit group under key "[tool.poetry.dependencies]"
"dev", under key "[tool.poetry.group.dev.dependencies]"
At the moment, the pip-check-updates parser will ignore other groups, for example "[tool.poetry.group.foo.dependencies]", where group name is "foo".
This feature request is to parse and detect updates for poetry groups other than "dev" and "main".
Poetry can organise dependencies into "groups": https://python-poetry.org/docs/managing-dependencies/#dependency-groups
Two common groups are used by default:
"main", an implicit group under key "[tool.poetry.dependencies]"
"dev", under key "[tool.poetry.group.dev.dependencies]"
At the moment, the pip-check-updates parser will ignore other groups, for example "[tool.poetry.group.foo.dependencies]", where group name is "foo".
This feature request is to parse and detect updates for poetry groups other than "dev" and "main".
Links to relevant source code: https://github.com/zehengl/pip-check-updates/blob/main/src/pip_check_updates/parser.py#L152
See method "_load_poetry"
The text was updated successfully, but these errors were encountered: