We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent accecff commit 66633e1Copy full SHA for 66633e1
components/polylith/diff/report.py
@@ -90,8 +90,9 @@ def print_short_diff(
90
91
a = _changed_projects(projects_data, "components", components)
92
b = _changed_projects(projects_data, "bases", bases)
93
+ c = set(projects)
94
- res = a | b | set(projects)
95
+ res = {*a, *b, *c}
96
97
console = Console(theme=info_theme)
98
console.print(",".join(res))
projects/poetry_polylith_plugin/pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "poetry-polylith-plugin"
3
-version = "1.0.5"
+version = "1.0.6"
4
description = "A Poetry plugin that adds tooling support for the Polylith Architecture"
5
authors = ["David Vujic"]
6
homepage = "https://github.com/davidvujic/python-polylith"
0 commit comments