Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ on:

jobs:
cxx-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@e885a99c2e34497c4c5c0c1428a269fb0aae7902
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.4
with:
warnings-to-ignore: "\"libcleaver.a.*has no symbols\" \"libitkcleaver.*has no symbols\""

python-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@e885a99c2e34497c4c5c0c1428a269fb0aae7902
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.4
secrets:
pypi_password: ${{ secrets.pypi_password }}
16 changes: 2 additions & 14 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ on:
jobs:
build-wasm:
name: "build-test-wasm"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3

- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
with:
node-version: '18'
node-version: '22'

- name: Install
run: |
Expand Down Expand Up @@ -58,15 +58,3 @@ jobs:
working-directory: ./wasm/typescript
browser: firefox
start: npm start

- uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-screenshots
path: wasm/typescript/cypress/screenshots

- uses: actions/upload-artifact@v3
if: always()
with:
name: cypress-videos
path: wasm/typescript/cypress/videos
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
"type": "module",
"scripts": {
"build": "npm run build:emscripten && npm run build:wasi && npm run bindgen:typescript",
"build:emscripten": "itk-wasm -i itkwasm/emscripten:20230328-71e6501e build",
"build:emscripten:debug": "itk-wasm -i itkwasm/emscripten:20230328-71e6501e-debug build -- -DCMAKE_BUILD_TYPE:STRING=Debug",
"build:wasi": "itk-wasm -i itkwasm/wasi:20230328-71e6501e build",
"build:wasi:debug": "itk-wasm -i itkwasm/wasi:20230328-71e6501e-debug build -- -DCMAKE_BUILD_TYPE:STRING=Debug",
"build:emscripten": "itk-wasm -i itkwasm/emscripten:20250619-3165ade4 build",
"build:emscripten:debug": "itk-wasm -i itkwasm/emscripten:20250619-3165ade4-debug build -- -DCMAKE_BUILD_TYPE:STRING=Debug",
"build:wasi": "itk-wasm -i itkwasm/wasi:20250619-3165ade4 build",
"build:wasi:debug": "itk-wasm -i itkwasm/wasi:20250619-3165ade4-debug build -- -DCMAKE_BUILD_TYPE:STRING=Debug",
"bindgen:typescript": "itk-wasm -b emscripten-build bindgen --output-dir wasm/typescript --package-name @itk-wasm/cleaver --package-description \"The Cleaver multimaterial tetrahedral meshing tool.\" --repository 'https://github.com/SCIInstitute/Cleaver'",
"test": "npm run test:wasi",
"test:wasi": "itk-wasm test --test-dir wasm",
"clean": "git clean -fdx -e node_modules"
},
"license": "Apache-2.0",
"devDependencies": {
"itk-wasm": "^1.0.0-b.91"
"itk-wasm": "^1.0.0-b.188"
}
}
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "itk-cleaver"
version = "1.4.0"
version = "1.4.1"
description = "An ITK interface to the Cleaver multi-material tetrahedral meshing library"
readme = "README.rst"
license = {file = "LICENSE"}
Expand Down Expand Up @@ -34,7 +34,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"itk == 5.4.*",
]
Expand Down
Loading