Skip to content

Commit

Permalink
fix: unpack sets with python 3.8-syntax (#35)
Browse files Browse the repository at this point in the history
* fix: unpack set with Python 3.8-compatible syntax

* bump poetry plugin to 1.0.6
  • Loading branch information
DavidVujic authored Nov 17, 2022
1 parent accecff commit 66633e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion components/polylith/diff/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ def print_short_diff(

a = _changed_projects(projects_data, "components", components)
b = _changed_projects(projects_data, "bases", bases)
c = set(projects)

res = a | b | set(projects)
res = {*a, *b, *c}

console = Console(theme=info_theme)
console.print(",".join(res))
2 changes: 1 addition & 1 deletion projects/poetry_polylith_plugin/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "poetry-polylith-plugin"
version = "1.0.5"
version = "1.0.6"
description = "A Poetry plugin that adds tooling support for the Polylith Architecture"
authors = ["David Vujic"]
homepage = "https://github.com/davidvujic/python-polylith"
Expand Down

0 comments on commit 66633e1

Please sign in to comment.