From 7a43c52ef69ed517d95fd8e78696c603c3ebb451 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Apr 2026 19:43:57 +0000 Subject: [PATCH] Update from copier (2026-04-12T19:43:57) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- .github/workflows/build.yaml | 18 +++++++----------- 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 027c473..443148f 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: 3d2cd28 +_commit: 41c2f2c _src_path: https://github.com/python-project-templates/base.git add_docs: true add_extension: python diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 632c6dd..db74cf6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -74,17 +74,13 @@ jobs: - name: Make dist run: make dist - - name: Test wheel install - run: | - python -m venv /tmp/test-wheel - /tmp/test-wheel/bin/pip install dist/*.whl - /tmp/test-wheel/bin/python -c "import python_template" - - - name: Test sdist install - run: | - python -m venv /tmp/test-sdist - /tmp/test-sdist/bin/pip install dist/*.tar.gz - /tmp/test-sdist/bin/python -c "import python_template" + - uses: actions-ext/python/test-wheel@main + with: + module: python_template + + - uses: actions-ext/python/test-sdist@main + with: + module: python_template - uses: actions/upload-artifact@v7 with: