Skip to content

Commit 3947b76

Browse files
authored
Merge pull request #139 from python-project-templates/copier-update-2026-09-01T16-38-31Z
Update from Copier (2026-09-01T16-38-31Z)
2 parents c25ac5d + b279ab4 commit 3947b76

6 files changed

Lines changed: 25 additions & 10 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: 195919b
2+
_commit: dcfbd4b
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: rustjswasm

.github/dependabot.yaml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "monthly"
7+
groups:
8+
github-actions:
9+
patterns:
10+
- "*"
711
labels:
812
- "part: github_actions"
913

@@ -13,6 +17,10 @@ updates:
1317
interval: "monthly"
1418
cooldown:
1519
default-days: 7
20+
groups:
21+
python:
22+
patterns:
23+
- "*"
1624
labels:
1725
- "lang: python"
1826
- "part: dependencies"
@@ -23,6 +31,10 @@ updates:
2331
interval: "monthly"
2432
cooldown:
2533
default-days: 7
34+
groups:
35+
javascript:
36+
patterns:
37+
- "*"
2638
labels:
2739
- "lang: javascript"
2840
- "part: dependencies"
@@ -33,7 +45,10 @@ updates:
3345
interval: "monthly"
3446
cooldown:
3547
default-days: 7
48+
groups:
49+
rust:
50+
patterns:
51+
- "*"
3652
labels:
3753
- "lang: rust"
3854
- "part: dependencies"
39-

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ jobs:
6565
persist-credentials: false
6666

6767
- name: Setup Python
68-
uses: actions-ext/python/setup@a3f3953ef26a519ab7b6a56b94d06fa1b31ab3f3
68+
uses: actions-ext/python/setup@ec67f82b3bd863948308a41ecb9e70547cbb19c7
6969
with:
7070
version: ${{ matrix.python }}
7171

7272
- name: Setup Rust
73-
uses: actions-ext/rust/setup@3de300f3071e758a1dd8545b884288a35e5d7f81
73+
uses: actions-ext/rust/setup@0f0b7c9ab3cdb6e9a1f79e2147974d6762ddafea
7474

7575
- name: Setup Node.js
76-
uses: actions-ext/node/setup@b0536d87c5e92c924bc8667f566f620758280825
76+
uses: actions-ext/node/setup@34d0fdbdca883e4d0a2da0bcd0fa460fd40b80e7
7777
with:
7878
version: 22.x
7979
if: matrix.target == 'native'
@@ -161,13 +161,13 @@ jobs:
161161
if: matrix.target == 'native' && runner.os != 'Linux'
162162

163163
- name: Test wheel
164-
uses: actions-ext/python/test-wheel@a3f3953ef26a519ab7b6a56b94d06fa1b31ab3f3
164+
uses: actions-ext/python/test-wheel@ec67f82b3bd863948308a41ecb9e70547cbb19c7
165165
with:
166166
module: python_template_rust
167167
if: matrix.target == 'native' && runner.os == 'Linux'
168168

169169
- name: Test source distribution
170-
uses: actions-ext/python/test-sdist@a3f3953ef26a519ab7b6a56b94d06fa1b31ab3f3
170+
uses: actions-ext/python/test-sdist@ec67f82b3bd863948308a41ecb9e70547cbb19c7
171171
with:
172172
module: python_template_rust
173173
if: matrix.name == 'ubuntu-latest'

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
persist-credentials: false
2323

2424
- name: Setup Python
25-
uses: actions-ext/python/setup@a3f3953ef26a519ab7b6a56b94d06fa1b31ab3f3
25+
uses: actions-ext/python/setup@ec67f82b3bd863948308a41ecb9e70547cbb19c7
2626

2727
- name: Download distributions
2828
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"access": "public"
2626
},
2727
"scripts": {
28-
"setup": "cargo install -f wasm-bindgen-cli --version 0.2.126 --locked",
28+
"setup": "cargo install -f wasm-bindgen-cli --version 0.2.127 --locked",
2929
"build:clean": "node -e \"const fs=require('fs'); fs.rmSync('dist',{recursive:true,force:true}); fs.rmSync('../python_template_rust/extension',{recursive:true,force:true})\"",
3030
"build:debug": "node build.mjs --debug",
3131
"build:rust": "cargo build --release --all-features --target wasm32-unknown-unknown --target-dir ../target",

rust/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requirements: ## install required dev dependencies
55
rustup component add clippy
66
cargo install --force --locked cargo-nextest
77
cargo install --force --locked cargo-llvm-cov
8-
cargo install --force --locked wasm-bindgen-cli --version 0.2.126
8+
cargo install --force --locked wasm-bindgen-cli --version 0.2.127
99
rustup target add wasm32-unknown-unknown
1010

1111
develop: requirements ## install required dev dependencies

0 commit comments

Comments
 (0)