Skip to content

Commit 002bc7c

Browse files
committed
build: Fix PyOdide build
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 8ea4457 commit 002bc7c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,8 @@ jobs:
480480
- uses: actions/checkout@v4
481481
- uses: dtolnay/rust-toolchain@nightly
482482
with:
483-
toolchain: nightly
483+
# Nightly 1.86 as 1.87+ is incompatible with PyOdide as of now
484+
toolchain: nightly-2025-02-01
484485
targets: wasm32-unknown-emscripten
485486
- uses: actions/setup-python@v5
486487
with:

.github/workflows/python-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,8 @@ jobs:
292292
- uses: actions/checkout@v4
293293
- uses: dtolnay/rust-toolchain@nightly
294294
with:
295-
toolchain: nightly
295+
# Nightly 1.86 as 1.87+ is incompatible with PyOdide as of now
296+
toolchain: nightly-2025-02-01
296297
targets: wasm32-unknown-emscripten
297298
- uses: actions/setup-python@v5
298299
with:

0 commit comments

Comments
 (0)