Skip to content

Commit 7adee8a

Browse files
committed
github/actions: Fix poetry v2.0.0 compatibility
resolves #79 Added sdist and wheel as format on pyproject.toml as a temporary fix for poetry format issue bug: python-poetry/poetry#9961 Signed-off-by: Arisu Tachibana <[email protected]>
1 parent 5c272d7 commit 7adee8a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ authors = ["Arisu Tachibana <[email protected]>"]
66
license = "LGPL-2.1-or-later"
77
readme = "README.md"
88
packages = [
9-
{include = "kcidev"},
10-
{include = "subcommands", from="kcidev"},
11-
{include = "libs", from="kcidev"},
12-
{include = ".kci-dev.toml.example", to="kcidev"},
9+
{include = "kcidev", format = ["sdist", "wheel"]},
10+
{include = "subcommands", from="kcidev", format = ["sdist", "wheel"]},
11+
{include = "libs", from="kcidev", format = ["sdist", "wheel"]},
12+
{include = ".kci-dev.toml.example", to="kcidev", format = ["sdist", "wheel"]},
1313
]
1414
repository = "https://github.com/kernelci/kci-dev"
1515
classifiers = [

0 commit comments

Comments
 (0)