Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/python-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
poetry-version:
description: 'Poetry version to use'
required: true
default: "2.1.4"
default: "2.2.1"

working-directory:
description: 'Working directory to use'
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.lint.json
.lint.txt
.security.json
.import_linter_cache

odbcconfig/odbcinst.ini

Expand Down
11 changes: 11 additions & 0 deletions exasol/toolbox/util/dependencies/poetry_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,17 @@ def groups(self) -> tuple[PoetryGroup, ...]:
toml_section=f"{group_key}.{group}.dependencies",
)
)

new_group_key = "dependency-groups"
if group_dict := self.get_section_dict(new_group_key):
for group, content in group_dict.items():
groups.append(
PoetryGroup(
name=group,
toml_section=f"{new_group_key}.{group}",
)
)

return tuple(groups)


Expand Down
Loading
Loading