Skip to content

Commit 66160a7

Browse files
Update from copier (2026-04-10T03:48:22)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent adddce4 commit 66160a7

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
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: 9b579a3
2+
_commit: 2ac7460
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: python

.github/workflows/build.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,18 @@ jobs:
7474
- name: Make dist
7575
run: make dist
7676

77+
- name: Test wheel install
78+
run: |
79+
python -m venv /tmp/test-wheel
80+
/tmp/test-wheel/bin/pip install dist/*.whl
81+
/tmp/test-wheel/bin/python -c "import python_template"
82+
83+
- name: Test sdist install
84+
run: |
85+
python -m venv /tmp/test-sdist
86+
/tmp/test-sdist/bin/pip install dist/*.tar.gz
87+
/tmp/test-sdist/bin/python -c "import python_template"
88+
7789
- uses: actions/upload-artifact@v7
7890
with:
7991
name: dist-${{matrix.os}}

0 commit comments

Comments
 (0)