Skip to content

Commit 2e96bb5

Browse files
Update from copier (2026-04-12T19:44:49)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 27c2cd5 commit 2e96bb5

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

.github/workflows/build.yaml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,14 @@ jobs:
8484
run: make dist
8585
if: matrix.os == 'ubuntu-latest'
8686

87-
- name: Test wheel install
88-
run: |
89-
python -m venv /tmp/test-wheel
90-
/tmp/test-wheel/bin/pip install dist/*.whl
91-
/tmp/test-wheel/bin/python -c "import python_template_jupyter"
87+
- uses: actions-ext/python/test-wheel@main
88+
with:
89+
module: python_template_jupyter
9290
if: matrix.os == 'ubuntu-latest'
9391

94-
- name: Test sdist install
95-
run: |
96-
python -m venv /tmp/test-sdist
97-
/tmp/test-sdist/bin/pip install dist/*.tar.gz
98-
/tmp/test-sdist/bin/python -c "import python_template_jupyter"
92+
- uses: actions-ext/python/test-sdist@main
93+
with:
94+
module: python_template_jupyter
9995
if: matrix.os == 'ubuntu-latest'
10096

10197
- uses: actions/upload-artifact@v7

0 commit comments

Comments
 (0)