From 7cb6ff9fc91ee28acbd477b1c5fa4c18c242c1fc Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Apr 2026 19:45:20 +0000 Subject: [PATCH] Update from copier (2026-04-12T19:45:20) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- .github/workflows/build.yaml | 16 ++++++---------- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 89e6f0b..316c4a0 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: 05ef55a +_commit: 41c2f2c _src_path: https://github.com/python-project-templates/base.git add_docs: true add_extension: rust diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2e3b999..4ddf347 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -101,18 +101,14 @@ jobs: CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=11.0 if: matrix.os != 'ubuntu-latest' - - 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_rust" + - uses: actions-ext/python/test-wheel@main + with: + module: python_template_rust if: matrix.os == 'ubuntu-latest' - - 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_rust" + - uses: actions-ext/python/test-sdist@main + with: + module: python_template_rust if: matrix.os == 'ubuntu-latest' - uses: actions/upload-artifact@v7