Skip to content

Commit

Permalink
Use python -m build for wheel and sdist (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
jni authored Oct 25, 2024
1 parent 5867a59 commit a33c19d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions doc/misc/release-notes/release-v0.12.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a33c19d

Please sign in to comment.