From e90a8df305f082eff615fa269fde5e29ccca83df Mon Sep 17 00:00:00 2001 From: Arisu Tachibana Date: Wed, 8 Jan 2025 15:31:05 +0900 Subject: [PATCH] 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: https://github.com/python-poetry/poetry/issues/9961 Signed-off-by: Arisu Tachibana --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 089e5f0..edc7a6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,10 +6,10 @@ authors = ["Arisu Tachibana "] license = "LGPL-2.1-or-later" readme = "README.md" packages = [ -{include = "kcidev"}, -{include = "subcommands", from="kcidev"}, -{include = "libs", from="kcidev"}, -{include = ".kci-dev.toml.example", to="kcidev"}, +{include = "kcidev", format = ["sdist", "wheel"]}, +{include = "subcommands", from="kcidev", format = ["sdist", "wheel"]}, +{include = "libs", from="kcidev", format = ["sdist", "wheel"]}, +{include = ".kci-dev.toml.example", to="kcidev", format = ["sdist", "wheel"]}, ] repository = "https://github.com/kernelci/kci-dev" classifiers = [