We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9fd54d9 + 2d195aa commit e473dbaCopy full SHA for e473dba
.github/workflows/publish.yml
@@ -13,9 +13,9 @@ jobs:
13
steps:
14
- uses: actions/checkout@v3
15
- name: Install build dependencies
16
- run: python -m pip install --upgrade build
+ run: python -m pip install --upgrade hatch
17
- name: Build
18
- run: python -m build
+ run: hatch build
19
- name: Generate release notes
20
run: |
21
python ./utilities/release-notes.py ./ReleaseNotes.txt
pyproject.toml
@@ -45,6 +45,12 @@ dependencies = [
45
[tool.hatch.version]
46
source = "vcs"
47
48
+[tool.hatch.build]
49
+exclude = [
50
+ "/js/node_modules",
51
+ "/examples",
52
+]
53
+
54
[project.urls]
55
Home = "https://itkwidgets.readthedocs.io/en/latest/"
56
Documentation = "https://itkwidgets.readthedocs.io/en/latest/"
0 commit comments