Skip to content

Commit

Permalink
Delete MANIFEST.in and exclude artifacts from sdist and wheel (#1119)
Browse files Browse the repository at this point in the history
* Delete MANIFEST.in

* Exclude files from sdist and wheel

* Update changelog
  • Loading branch information
rly authored Jun 5, 2024
1 parent 2505a0e commit 5ad0beb
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# HDMF Changelog

## HDMF 3.14.1 (June 3, 2024)
## HDMF 3.14.1 (Upcoming)

### Bug Fixes
### Bug fixes
- Excluded unnecessary artifacts from sdist and wheel. @rly [#1119](https://github.com/hdmf-dev/hdmf/pull/1119)
- Fixed issue with resolving attribute specs that have the same name at different levels of a spec hierarchy.
@rly [#1122](https://github.com/hdmf-dev/hdmf/pull/1122)


## HDMF 3.14.0 (May 20, 2024)

### Enhancements
Expand Down
5 changes: 0 additions & 5 deletions MANIFEST.in

This file was deleted.

15 changes: 14 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,23 @@ source = "vcs"
version-file = "src/hdmf/_version.py"

[tool.hatch.build.targets.sdist]
exclude = [".git_archival.txt"]
exclude = [
".git*",
".codecov.yml",
".readthedocs.yaml",
".mailmap",
".pre-commit-config.yaml",
]

[tool.hatch.build.targets.wheel]
packages = ["src/hdmf"]
exclude = [
".git*",
".codecov.yml",
".readthedocs.yaml",
".mailmap",
".pre-commit-config.yaml",
]

# [tool.mypy]
# no_incremental = true # needed b/c mypy and ruamel.yaml do not play nice. https://github.com/python/mypy/issues/12664
Expand Down

0 comments on commit 5ad0beb

Please sign in to comment.