-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1258 from thewtex/python-wasm-pixi
python wasm pixi
- Loading branch information
Showing
102 changed files
with
58,252 additions
and
290 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,8 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: prefix-dev/[email protected] | ||
|
||
- name: Set up Python ${{ env.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
|
@@ -59,10 +61,6 @@ jobs: | |
run: | | ||
pnpm run --aggregate-output --filter "@itk-wasm/${{ matrix.package }}-build" bindgen:python | ||
- name: Build build:micromamba | ||
run: | | ||
pnpm run --aggregate-output --filter "@itk-wasm/${{ matrix.package }}-build" build:micromamba | ||
- name: Build build:python:wasi | ||
if: ${{ matrix.os == 'ubuntu-22.04' || (matrix.package != 'mesh-io' && matrix.package != 'image-io' && matrix.package != 'downsample' ) }} | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ dist/ | |
test/ | ||
package-lock.json | ||
typescript/test/browser/demo-app/public | ||
micromamba/ | ||
pyodide/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
git-checks=false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
{ | ||
"name": "@itk-wasm/compare-images-build", | ||
"version": "1.0.0", | ||
"version": "5.2.3", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"description": "scripts to generate @itk-wasm/compare-stringify itk-wasm artifacts.", | ||
"description": "@itk-wasm/compare-stringify build configuration", | ||
"type": "module", | ||
"itk-wasm": { | ||
"emscripten-docker-image": "itkwasm/emscripten:latest", | ||
|
@@ -23,26 +22,22 @@ | |
"build:emscripten:debug": "itk-wasm pnpm-script build:emscripten:debug", | ||
"build:wasi": "itk-wasm pnpm-script build:wasi", | ||
"build:wasi:debug": "itk-wasm pnpm-script build:wasi:debug", | ||
"build:python:wasi": "itk-wasm pnpm-script build:python:wasi", | ||
"build:python:wasi": "echo 'No build:python:wasi script required with pixi'", | ||
"bindgen:typescript": "itk-wasm pnpm-script bindgen:typescript", | ||
"bindgen:python": "itk-wasm pnpm-script bindgen:python", | ||
"build:gen:typescript": "itk-wasm pnpm-script build:gen:typescript", | ||
"build:gen:python": "itk-wasm pnpm-script build:gen:python", | ||
"build:micromamba": "itk-wasm pnpm-script build:micromamba", | ||
"build:python:versionSync": "itk-wasm pnpm-script build:python:versionSync", | ||
"publish:python": "itk-wasm pnpm-script publish:python", | ||
"build:gen:python": "pnpm build:wasi && pnpm bindgen:python", | ||
"test": "pnpm test:data:download && pnpm build:gen:python && pnpm test:python", | ||
"test:data:download": "dam download test/data test/data.tar.gz bafybeiafli6egtmkcgany65po64w67hpqnmgwr5utqo6ycbbz7k5l33llu https://github.com/InsightSoftwareConsortium/ITK-Wasm/releases/download/itk-wasm-v1.0.0-b.171/compare-images-test-data.tar.gz", | ||
"test:data:pack": "dam pack test/data test/data.tar.gz", | ||
"test:python:wasi": "itk-wasm pnpm-script test:python:wasi", | ||
"test:python:emscripten": "itk-wasm pnpm-script test:python:emscripten", | ||
"test:python:dispatch": "itk-wasm pnpm-script test:python:emscripten", | ||
"test:python": "itk-wasm pnpm-script test:python" | ||
"test:python:wasi": "pnpm test:data:download && pixi run test-wasi", | ||
"test:python:emscripten": "pnpm test:data:download && pixi run test-emscripten", | ||
"test:python:dispatch": "pnpm test:data:download && pixi run test-dispatch", | ||
"test:python": "pixi run test-python" | ||
}, | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"@itk-wasm/dam": "^1.1.0", | ||
"@thewtex/setup-micromamba": "^1.9.7", | ||
"itk-wasm": "workspace:^", | ||
"@itk-wasm/image-io-build": "workspace:^" | ||
} | ||
|
Oops, something went wrong.