diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 5c4baae..df69f9b 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: jupyter diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b6c879e..ab495cf 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -84,18 +84,14 @@ jobs: run: make dist 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_jupyter" + - uses: actions-ext/python/test-wheel@main + with: + module: python_template_jupyter 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_jupyter" + - uses: actions-ext/python/test-sdist@main + with: + module: python_template_jupyter if: matrix.os == 'ubuntu-latest' - uses: actions/upload-artifact@v7