Skip to content

Commit 285476b

Browse files
Update from copier (2026-04-12T19:44:06)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8549a66 commit 285476b

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
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: true
55
add_extension: cpp

.github/workflows/build.yaml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -139,18 +139,14 @@ jobs:
139139
CIBW_BEFORE_ALL: call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
140140
if: matrix.os == 'windows-latest'
141141

142-
- name: Test wheel install
143-
run: |
144-
python -m venv /tmp/test-wheel
145-
/tmp/test-wheel/bin/pip install dist/*.whl
146-
/tmp/test-wheel/bin/python -c "import python_template_cpp"
142+
- uses: actions-ext/python/test-wheel@main
143+
with:
144+
module: python_template_cpp
147145
if: matrix.os == 'ubuntu-latest'
148146

149-
- name: Test sdist install
150-
run: |
151-
python -m venv /tmp/test-sdist
152-
/tmp/test-sdist/bin/pip install dist/*.tar.gz
153-
/tmp/test-sdist/bin/python -c "import python_template_cpp"
147+
- uses: actions-ext/python/test-sdist@main
148+
with:
149+
module: python_template_cpp
154150
if: matrix.os == 'ubuntu-latest'
155151

156152
- uses: actions/upload-artifact@v7

0 commit comments

Comments
 (0)