Skip to content

Commit e56c266

Browse files
authored
Merge pull request #59 from python-project-templates/copier-update-2026-03-03T19-42-03
Update from copier (2026-03-03T19:42:03)
2 parents f5981e8 + 48bca3f commit e56c266

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

.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: 08a244d
2+
_commit: 28c66e4
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: make coverage
6666

6767
- name: Upload test results (Python)
68-
uses: actions/upload-artifact@v6
68+
uses: actions/upload-artifact@v7
6969
with:
7070
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
7171
path: '**/junit.xml'
@@ -106,7 +106,7 @@ jobs:
106106
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=11.0
107107
if: matrix.os != 'ubuntu-latest'
108108

109-
- uses: actions/upload-artifact@v6
109+
- uses: actions/upload-artifact@v7
110110
with:
111111
name: dist-${{matrix.os}}
112112
path: dist

js/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ crate-type = ["cdylib"]
1313

1414
[dependencies]
1515
python_template_rust = { path = "../rust", version = "*" }
16-
wasm-bindgen = "0.2.108"
16+
wasm-bindgen = "0.2.114"

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"access": "public"
2727
},
2828
"scripts": {
29-
"setup": "cargo install -f wasm-bindgen-cli --version 0.2.108",
29+
"setup": "cargo install -f wasm-bindgen-cli --version 0.2.114",
3030
"build:debug": "node build.mjs --debug",
3131
"build:rust": "cargo build --release --all-features --target wasm32-unknown-unknown",
3232
"build:wasm-bindgen": "wasm-bindgen ../target/wasm32-unknown-unknown/release/python_template_rust.wasm --out-dir ./dist/pkg --target web",

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ branch = true
124124
omit = [
125125
"python_template_rust/tests/integration/",
126126
]
127+
127128
[tool.coverage.report]
128129
exclude_also = [
129130
"raise NotImplementedError",
@@ -143,6 +144,7 @@ targets = [
143144

144145
[tool.hatch.build.hooks.hatch-rs]
145146
verbose = true
147+
abi3 = true
146148
module = "python_template_rust"
147149
path = "."
148150

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 -f cargo-nextest --locked
77
cargo install -f cargo-llvm-cov
8-
cargo install -f wasm-bindgen-cli --version 0.2.108
8+
cargo install -f wasm-bindgen-cli --version 0.2.114
99
rustup target add wasm32-unknown-unknown
1010

1111
develop: requirements ## install required dev dependencies

0 commit comments

Comments
 (0)