Skip to content

Commit da113a8

Browse files
committed
fix
1 parent ca0c6e4 commit da113a8

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

.github/workflows/enscripten.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131

3232
- uses: actions/upload-artifact@v4
3333
with:
34-
path: dist/*.whl
34+
path: wheelhouse/*.whl

.github/workflows/wheels.yml

+21
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,27 @@ jobs:
6363
with:
6464
path: wheelhouse/*.whl
6565

66+
build-wasm-emscripten:
67+
name: Pyodide
68+
runs-on: ubuntu-22.04
69+
steps:
70+
- uses: actions/checkout@v4
71+
with:
72+
submodules: true
73+
fetch-depth: 0
74+
75+
- uses: actions/setup-python@v5
76+
with:
77+
python-version: "3.12"
78+
79+
- uses: pypa/[email protected]
80+
env:
81+
CIBW_PLATFORM: pyodide
82+
CIBW_TEST_SKIP: "*"
83+
84+
- uses: actions/upload-artifact@v4
85+
with:
86+
path: wheelhouse/*.whl
6687

6788
upload_all:
6889
name: Upload if release

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "scikit_build_core.build"
55

66
[project]
77
name = "naive_svg"
8-
version = "0.0.4"
8+
version = "0.0.5"
99
url = "https://github.com/cubao/pybind11-naive-svg"
1010
description="naive svg writer"
1111
readme = "README.md"

0 commit comments

Comments
 (0)