Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ and this project adheres to

## [Unreleased]

### Changed

- Use explicit include lists instead of exclude lists for hatch build targets
(sdist and wheel) in `pyproject.toml` ([953d604], [#67])

### Infrastructure

- CI: move shellcheck into its own dedicated workflow, separate from changelog
Expand Down Expand Up @@ -196,6 +201,7 @@ and this project adheres to

<!-- Commit links -->

[953d604]: https://github.com/LeakIX/l9format-python/commit/953d604
[72bf877]: https://github.com/LeakIX/l9format-python/commit/72bf877
[c9216ba]: https://github.com/LeakIX/l9format-python/commit/c9216ba
[fa582dc]: https://github.com/LeakIX/l9format-python/commit/fa582dc
Expand Down Expand Up @@ -297,4 +303,5 @@ and this project adheres to
[#62]: https://github.com/LeakIX/l9format-python/pull/62
[#64]: https://github.com/LeakIX/l9format-python/pull/64
[#65]: https://github.com/LeakIX/l9format-python/pull/65
[#67]: https://github.com/LeakIX/l9format-python/pull/67
[#43]: https://github.com/LeakIX/l9format-python/issues/43
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ dev = [
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.sdist]
include = ["l9format/", "LICENSE", "README.md", "pyproject.toml"]

[tool.hatch.build.targets.wheel]
include = ["l9format/"]

[tool.ruff]
line-length = 80

Expand Down
Loading