diff --git a/.copier-answers.yaml b/.copier-answers.yaml index bff337f..8dd042e 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: b2cdb6d +_commit: a63c624 _src_path: https://github.com/python-project-templates/base.git add_docs: true add_extension: cpp diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f966303..55722d0 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -136,5 +136,5 @@ jobs: - name: Upload distributions uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: dist-${{matrix.os}}-${{matrix.python.version}} + name: dist-${{ matrix.os }}-${{ matrix.python.version }} path: dist diff --git a/.github/workflows/copier.yaml b/.github/workflows/copier.yaml deleted file mode 100644 index 7171411..0000000 --- a/.github/workflows/copier.yaml +++ /dev/null @@ -1,18 +0,0 @@ -name: Copier Updates - -on: - workflow_dispatch: - schedule: - - cron: "0 5 * * 0" - -jobs: - update: - permissions: - contents: write - pull-requests: write - runs-on: ubuntu-latest - steps: - - name: Update from Copier - uses: actions-ext/copier/update@2061209faa6b75ffd4fcecc0b0983772767997f4 - with: - token: ${{ secrets.WORKFLOW_TOKEN }} diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 2ac037f..ed3bdcc 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -14,7 +14,7 @@ permissions: jobs: docs: runs-on: ubuntu-latest - if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }} + if: github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' steps: - name: Checkout uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 @@ -39,13 +39,13 @@ jobs: run: | uv pip install dist/*.whl uv pip install dist/*.whl --target . --no-deps - uv pip install yardang + uv pip install "yardang[llms,themes]" if: github.event_name == 'workflow_run' - name: Install from source (manual trigger) run: | uv pip install .[develop] - uv pip install yardang + uv pip install "yardang[llms,themes]" if: github.event_name == 'workflow_dispatch' - name: Build documentation