diff --git a/.github/actions/pkg-create/action.yml b/.github/actions/pkg-create/action.yml index 3a1f79c5..20cf34df 100644 --- a/.github/actions/pkg-create/action.yml +++ b/.github/actions/pkg-create/action.yml @@ -12,16 +12,12 @@ runs: steps: - name: Prepare dev. env - run: pip install "twine==4.0.2" setuptools wheel - shell: bash - - - name: Source check - run: python setup.py check --metadata --strict + run: pip install "twine==4.0.2" setuptools wheel build shell: bash - name: Create package 📦 # python setup.py clean - run: python setup.py sdist bdist_wheel + run: python -m build shell: bash - name: Check package 📦 diff --git a/CHANGELOG.md b/CHANGELOG.md index c9596e72..219be1d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - CI/docs: allow passing env. variables ([#96](https://github.com/Lightning-AI/utilities/pull/96)) +- CI: build package ([#104](https://github.com/Lightning-AI/utilities/pull/104)) + + ### Fixed - Fixed `StrEnum.from_str` with source as key ([#99](https://github.com/Lightning-AI/utilities/pull/99))