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 22
22
python -m pip install --upgrade build
23
23
- name : Build package
24
24
run : python -m build
25
+ - name : Test wheel installation
26
+ run : |
27
+ python -m pip install dist/*.whl
28
+ python -c "import nwbinspector"
25
29
- name : pypi-publish
26
30
uses : pypa/gh-action-pypi-publish@v1.4.2
27
31
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
+
1
6
# v0.6.4 (July 24, 2025)
2
7
3
8
### New Checks
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
5
5
[project ]
6
6
name = " nwbinspector"
7
- version = " 0.6.4 "
7
+ version = " 0.6.5 "
8
8
description = " Tool to inspect NWB files for best practices compliance."
9
9
readme = " README.md"
10
10
authors = [
@@ -55,9 +55,11 @@ dandi = [
55
55
]
56
56
57
57
[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
+ ]
61
63
62
64
[tool .hatch .build .targets .wheel ]
63
65
packages = [" src/nwbinspector" ]
You can’t perform that action at this time.
0 commit comments