Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete MANIFEST.in and exclude artifacts from sdist and wheel #1119

Merged
merged 4 commits into from
Jun 5, 2024
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
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
Loading