diff --git a/.github/workflows/make-release.yml b/.github/workflows/make-release.yml index cb7bbcb..3dadadb 100644 --- a/.github/workflows/make-release.yml +++ b/.github/workflows/make-release.yml @@ -21,9 +21,10 @@ jobs: - name: Install Dependencies run: | python -m pip install --upgrade pip + python -m pip install build python -m pip install -e . # need full install so we can build type stubs - name: Build Distribution - run: python setup.py sdist bdist_wheel + run: python -m build - name: Publish PyPI Package uses: pypa/gh-action-pypi-publish@release/v1 with: diff --git a/doc/misc/release-notes/release-v0.12.md b/doc/misc/release-notes/release-v0.12.md index 418ed2c..18faaf3 100644 --- a/doc/misc/release-notes/release-v0.12.md +++ b/doc/misc/release-notes/release-v0.12.md @@ -58,6 +58,8 @@ release! 🙏 You can find the full list of changes below: ## Misc +- [#232](https://github.com/jni/skan/pull/232): Use python -m build for wheel + and sdist - [#218](https://github.com/jni/skan/pull/218): Fix pyproject.toml metadata formatting - [#217](https://github.com/jni/skan/pull/217): Migrate from setup.cfg to