Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .copier-answers.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: 195919b
_commit: dcfbd4b
_src_path: https://github.com/python-project-templates/base.git
add_docs: true
add_extension: rustjswasm
Expand Down
17 changes: 16 additions & 1 deletion .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ updates:
directory: "/"
schedule:
interval: "monthly"
groups:
github-actions:
patterns:
- "*"
labels:
- "part: github_actions"

Expand All @@ -13,6 +17,10 @@ updates:
interval: "monthly"
cooldown:
default-days: 7
groups:
python:
patterns:
- "*"
labels:
- "lang: python"
- "part: dependencies"
Expand All @@ -23,6 +31,10 @@ updates:
interval: "monthly"
cooldown:
default-days: 7
groups:
javascript:
patterns:
- "*"
labels:
- "lang: javascript"
- "part: dependencies"
Expand All @@ -33,7 +45,10 @@ updates:
interval: "monthly"
cooldown:
default-days: 7
groups:
rust:
patterns:
- "*"
labels:
- "lang: rust"
- "part: dependencies"

10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ jobs:
persist-credentials: false

- name: Setup Python
uses: actions-ext/python/setup@a3f3953ef26a519ab7b6a56b94d06fa1b31ab3f3
uses: actions-ext/python/setup@ec67f82b3bd863948308a41ecb9e70547cbb19c7
with:
version: ${{ matrix.python }}

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

- name: Setup Node.js
uses: actions-ext/node/setup@b0536d87c5e92c924bc8667f566f620758280825
uses: actions-ext/node/setup@34d0fdbdca883e4d0a2da0bcd0fa460fd40b80e7
with:
version: 22.x
if: matrix.target == 'native'
Expand Down Expand Up @@ -161,13 +161,13 @@ jobs:
if: matrix.target == 'native' && runner.os != 'Linux'

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

- name: Test source distribution
uses: actions-ext/python/test-sdist@a3f3953ef26a519ab7b6a56b94d06fa1b31ab3f3
uses: actions-ext/python/test-sdist@ec67f82b3bd863948308a41ecb9e70547cbb19c7
with:
module: python_template_rust
if: matrix.name == 'ubuntu-latest'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
persist-credentials: false

- name: Setup Python
uses: actions-ext/python/setup@a3f3953ef26a519ab7b6a56b94d06fa1b31ab3f3
uses: actions-ext/python/setup@ec67f82b3bd863948308a41ecb9e70547cbb19c7

- name: Download distributions
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
Expand Down
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"access": "public"
},
"scripts": {
"setup": "cargo install -f wasm-bindgen-cli --version 0.2.126 --locked",
"setup": "cargo install -f wasm-bindgen-cli --version 0.2.127 --locked",
"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})\"",
"build:debug": "node build.mjs --debug",
"build:rust": "cargo build --release --all-features --target wasm32-unknown-unknown --target-dir ../target",
Expand Down
2 changes: 1 addition & 1 deletion rust/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ requirements: ## install required dev dependencies
rustup component add clippy
cargo install --force --locked cargo-nextest
cargo install --force --locked cargo-llvm-cov
cargo install --force --locked wasm-bindgen-cli --version 0.2.126
cargo install --force --locked wasm-bindgen-cli --version 0.2.127
rustup target add wasm32-unknown-unknown

develop: requirements ## install required dev dependencies
Expand Down
Loading