Skip to content

Commit 7cb6ff9

Browse files
Update from copier (2026-04-12T19:45:20)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 557c51e commit 7cb6ff9

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: 05ef55a
2+
_commit: 41c2f2c
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: rust

.github/workflows/build.yaml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -101,18 +101,14 @@ jobs:
101101
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=11.0
102102
if: matrix.os != 'ubuntu-latest'
103103

104-
- name: Test wheel install
105-
run: |
106-
python -m venv /tmp/test-wheel
107-
/tmp/test-wheel/bin/pip install dist/*.whl
108-
/tmp/test-wheel/bin/python -c "import python_template_rust"
104+
- uses: actions-ext/python/test-wheel@main
105+
with:
106+
module: python_template_rust
109107
if: matrix.os == 'ubuntu-latest'
110108

111-
- name: Test sdist install
112-
run: |
113-
python -m venv /tmp/test-sdist
114-
/tmp/test-sdist/bin/pip install dist/*.tar.gz
115-
/tmp/test-sdist/bin/python -c "import python_template_rust"
109+
- uses: actions-ext/python/test-sdist@main
110+
with:
111+
module: python_template_rust
116112
if: matrix.os == 'ubuntu-latest'
117113

118114
- uses: actions/upload-artifact@v7

0 commit comments

Comments
 (0)