From b625d6f84607493182c26ce1c2bac2f5e04344e1 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Fri, 2 Jan 2026 11:38:57 -0700 Subject: [PATCH] update test.yaml to use specific Wasmtime version Wasmtime 40 and later include component model ABI changes that we don't support yet. --- .github/workflows/test.yaml | 2 +- examples/http-p3/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 12712de..b1a2941 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -134,7 +134,7 @@ jobs: - uses: taiki-e/install-action@v2 with: - tool: wasmtime-cli + tool: wasmtime-cli@39.0.1 - uses: actions/setup-python@v5 with: diff --git a/examples/http-p3/README.md b/examples/http-p3/README.md index 61c1d18..75d058e 100644 --- a/examples/http-p3/README.md +++ b/examples/http-p3/README.md @@ -10,15 +10,15 @@ run a Python-based component targetting version `0.3.0-rc-2025-09-16` of the ## Prerequisites -* `Wasmtime` 38.0.0 or later +* `Wasmtime` 39.0.1 * `componentize-py` 0.19.3 Below, we use [Rust](https://rustup.rs/)'s `cargo` to install `Wasmtime`. If you don't have `cargo`, you can download and install from -https://github.com/bytecodealliance/wasmtime/releases/tag/v38.0.0. +https://github.com/bytecodealliance/wasmtime/releases/tag/v39.0.1. ``` -cargo install --version 38.0.0 wasmtime-cli +cargo install --version 39.0.1 wasmtime-cli pip install componentize-py==0.19.3 ```