File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 2222 python -m pip install --upgrade build
2323 - name : Build package
2424 run : python -m build
25+ - name : Test wheel installation
26+ run : |
27+ python -m pip install dist/*.whl
28+ python -c "import nwbinspector"
2529 - name : pypi-publish
26302731 with :
Original file line number Diff line number Diff line change 1+ # v0.6.5 (July 25, 2025)
2+
3+ ### Fixes
4+ * Fixed build configuration error in pyproject.toml [ #605 ] ( https://github.com/NeurodataWithoutBorders/nwbinspector/pull/605 )
5+
16# v0.6.4 (July 24, 2025)
27
38### New Checks
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " nwbinspector"
7- version = " 0.6.4 "
7+ version = " 0.6.5 "
88description = " Tool to inspect NWB files for best practices compliance."
99readme = " README.md"
1010authors = [
@@ -55,9 +55,11 @@ dandi = [
5555]
5656
5757[tool .hatch .build .targets .sdist ]
58- packages = [" src/nwbinspector" ]
59- [tool .hatch .build .targets .sdist .force-include ]
60- "license.txt" = " license.txt"
58+ exclude = [
59+ " .git*" ,
60+ " codecov.yml" ,
61+ " .pre-commit-config.yaml" ,
62+ ]
6163
6264[tool .hatch .build .targets .wheel ]
6365packages = [" src/nwbinspector" ]
You can’t perform that action at this time.
0 commit comments