From e17d05f39e616aab89a795493b8bf3718d2b8eb8 Mon Sep 17 00:00:00 2001 From: Jirka B Date: Mon, 16 Dec 2024 18:40:53 +0900 Subject: [PATCH] ci: debug pkg create on multi-OS --- .github/actions/pkg-create/action.yml | 4 ++-- setup.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/actions/pkg-create/action.yml b/.github/actions/pkg-create/action.yml index d788de75..0f31910f 100644 --- a/.github/actions/pkg-create/action.yml +++ b/.github/actions/pkg-create/action.yml @@ -6,12 +6,12 @@ runs: steps: - name: Create package 📦 # python setup.py clean - run: python -m build + run: python -m build --verbose shell: bash - name: Check package 📦 working-directory: dist run: | ls -lh . - twine check * + twine check * --strict shell: bash diff --git a/setup.py b/setup.py index 5c0afd0d..63b9755f 100755 --- a/setup.py +++ b/setup.py @@ -54,7 +54,6 @@ def _requirement_extras(path_req: str = _PATH_REQUIRE) -> dict: url=about.__homepage__, download_url="https://github.com/Lightning-AI/utilities", license=about.__license__, - # fixme: somehow the `.cli` is missing in created package packages=find_packages(where="src"), package_dir={"": "src"}, long_description=readme,