Skip to content

Commit dbe5a0d

Browse files
Update from copier (2025-11-01T16:56:00)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent d509282 commit dbe5a0d

File tree

6 files changed

+15
-10
lines changed

6 files changed

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

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,13 @@ crate-type = ["cdylib"]
1111

1212
[dependencies]
1313
python_template_rust = { path = "./rust", version = "*" }
14+
<<<<<<< before updating
1415
pyo3 = { version = "0.26", features = ["abi3-py39", "extension-module", "multiple-pymethods"] }
1516
strum = "0.27.2"
17+
=======
18+
pyo3 = { version = "0.27.1", features = ["abi3-py39", "extension-module", "multiple-pymethods"] }
19+
strum = "0.24.1"
20+
>>>>>>> after updating
1621

1722
[profile.release]
1823
panic = 'abort'

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.104"
16+
wasm-bindgen = "0.2.105"

js/package.json

Lines changed: 5 additions & 5 deletions
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.104",
29+
"setup": "cargo install -f wasm-bindgen-cli --version 0.2.105",
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",
@@ -52,11 +52,11 @@
5252
"dependencies": {},
5353
"devDependencies": {
5454
"@finos/perspective-esbuild-plugin": "^3.2.1",
55-
"@playwright/test": "^1.55.1",
55+
"@playwright/test": "^1.56.1",
5656
"@prospective.co/procss": "^0.1.17",
57-
"cpy": "^12.0.1",
58-
"esbuild": "^0.25.10",
59-
"esbuild-plugin-less": "^1.3.27",
57+
"cpy": "^12.1.0",
58+
"esbuild": "^0.25.11",
59+
"esbuild-plugin-less": "^1.3.28",
6060
"http-server": "^14.1.1",
6161
"nodemon": "^3.1.10",
6262
"npm-run-all": "^4.1.5",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ develop = [
3939
"hatch-js",
4040
"hatch-rs",
4141
"hatchling",
42-
"mdformat>=0.7.22,<0.8",
42+
"mdformat>=0.7.22,<1.1",
4343
"mdformat-tables>=1",
4444
"pytest",
4545
"pytest-cov",
46-
"ruff",
46+
"ruff>=0.9,<0.15",
4747
"twine",
4848
"wheel",
4949
]

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

1111
develop: requirements ## install required dev dependencies

0 commit comments

Comments
 (0)