Skip to content

Commit e90a8df

Browse files
committed
poetry/ci: Fix poetry 2.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 <arisu.tachibana@miraclelinux.com>
1 parent 5c272d7 commit e90a8df

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ authors = ["Arisu Tachibana <arisu.tachibana@miraclelinux.com>"]
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)