Skip to content

Commit c410184

Browse files
Update from Copier (2026-08-05T03-55-48Z)
Signed-off-by: copier-update[bot] <copier-update[bot]@users.noreply.github.com>
1 parent 6a0ee93 commit c410184

5 files changed

Lines changed: 18 additions & 38 deletions

File tree

.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: b2cdb6d
2+
_commit: a63c624
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: rustjswasm

.github/workflows/build.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ jobs:
3030
strategy:
3131
matrix:
3232
os: [ubuntu-latest, macos-latest, windows-latest]
33-
python-version: ["3.11"]
34-
node-version: [22.x]
3533

3634
steps:
3735
- name: Checkout
@@ -42,15 +40,15 @@ jobs:
4240
- name: Setup Python
4341
uses: actions-ext/python/setup@6e1b91a408ea89f49bc8aff8724f83826f7b5446
4442
with:
45-
version: ${{ matrix.python-version }}
43+
version: "3.11"
4644

4745
- name: Setup Rust
4846
uses: actions-ext/rust/setup@2db8e3e4c56beb7320c7d730bd2c2d6a6447bf6b
4947

5048
- name: Setup Node.js
5149
uses: actions-ext/node/setup@0ea5bdcd24d2488b28e16bf611b446a2f8e1e12f
5250
with:
53-
version: ${{ matrix.node-version }}
51+
version: 22.x
5452

5553
- name: Install dependencies
5654
run: make develop
@@ -72,7 +70,7 @@ jobs:
7270
- name: Upload test results (Python)
7371
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7472
with:
75-
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
73+
name: test-results-${{ matrix.os }}
7674
path: '**/junit.xml'
7775
if: matrix.os == 'ubuntu-latest'
7876

@@ -135,5 +133,5 @@ jobs:
135133
- name: Upload distributions
136134
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
137135
with:
138-
name: dist-${{matrix.os}}
136+
name: dist-${{ matrix.os }}
139137
path: dist

.github/workflows/copier.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
jobs:
1515
docs:
1616
runs-on: ubuntu-latest
17-
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
17+
if: github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch'
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
@@ -39,14 +39,14 @@ jobs:
3939
run: |
4040
uv pip install dist/*.whl
4141
uv pip install dist/*.whl --target . --no-deps
42-
uv pip install yardang
42+
uv pip install "yardang[llms,themes]"
4343
if: github.event_name == 'workflow_run'
4444

4545
- name: Install from source (manual trigger)
4646
run: |
4747
make develop
4848
uv pip install .
49-
uv pip install yardang
49+
uv pip install "yardang[llms,themes]"
5050
if: github.event_name == 'workflow_dispatch'
5151

5252
- name: Build documentation

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)