Skip to content

Commit

Permalink
ci: debug pkg create on multi-OS
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Dec 16, 2024
1 parent e428402 commit e17d05f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/pkg-create/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit e17d05f

Please sign in to comment.