Skip to content

Commit cbf03c5

Browse files
authored
Merge pull request #101 from python-project-templates/copier-update-2026-04-12T19-42-14
Update from copier (2026-04-12T19:42:14)
2 parents ef06a73 + b184534 commit cbf03c5

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

.copier-answers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: fdea3fe
2+
_commit: 41c2f2c
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: python

.github/workflows/build.yaml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,13 @@ jobs:
7373
- name: Make dist
7474
run: make dist
7575

76-
- name: Test wheel install
77-
run: |
78-
python -m venv /tmp/test-wheel
79-
/tmp/test-wheel/bin/pip install dist/*.whl
80-
/tmp/test-wheel/bin/python -c "import hatch_cpp"
81-
82-
- name: Test sdist install
83-
run: |
84-
python -m venv /tmp/test-sdist
85-
/tmp/test-sdist/bin/pip install dist/*.tar.gz
86-
/tmp/test-sdist/bin/python -c "import hatch_cpp"
76+
- uses: actions-ext/python/test-wheel@main
77+
with:
78+
module: hatch_cpp
79+
80+
- uses: actions-ext/python/test-sdist@main
81+
with:
82+
module: hatch_cpp
8783

8884
- uses: actions/upload-artifact@v7
8985
with:

0 commit comments

Comments
 (0)