diff --git a/CHANGELOG.md b/CHANGELOG.md index b517f54..19d7623 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [UNRELEASED](https://github.com/hynek/build-and-inspect-python-package/compare/v2.0.2...main) +### Added + +- New input: `skip-wheel` to skip building the wheel in addition to the source distribution. + This is useful if you need to build your wheels using advanced tools like [*cibuildwheel*](https://cibuildwheel.pypa.io/) anyway. + [#98](https://github.com/hynek/build-and-inspect-python-package/pull/98) + ## [2.0.2](https://github.com/hynek/build-and-inspect-python-package/compare/v2.0.1...v2.0.2) – 2024-03-16 diff --git a/README.md b/README.md index 2730188..fd3e2dd 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ jobs: - `path`: the location of the Python package to build (*optional*, default: `.`). - `skip-wheel`: Whether to skip building the wheel in addition to the source distribution. The only meaningful value is `'true'` (note the quotes – GitHub Actions only allow string inputs) and everything else is treated as falsey. + This is useful if you need to build your wheels using advanced tools like [*cibuildwheel*](https://cibuildwheel.pypa.io/) anyway. (*optional*, default: `'false'`).