diff options
author | Brett Cannon <brett@python.org> | 2024-03-14 01:45:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 01:45:33 (GMT) |
commit | 3a25d9c5a95d4e57513ea7edd9e184f4609ebe20 (patch) | |
tree | ff8a7b343890d204beba934ae9f4636facad7dd6 /.devcontainer | |
parent | 8c094c3095feb4de2efebd00f67fb6cc3b2bc240 (diff) | |
download | cpython-3a25d9c5a95d4e57513ea7edd9e184f4609ebe20.zip cpython-3a25d9c5a95d4e57513ea7edd9e184f4609ebe20.tar.gz cpython-3a25d9c5a95d4e57513ea7edd9e184f4609ebe20.tar.bz2 |
GH-114736: Use WASI SDK 21 (GH-116771)
Diffstat (limited to '.devcontainer')
-rw-r--r-- | .devcontainer/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 3657564..fa30aee 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,11 +2,11 @@ FROM docker.io/library/fedora:37 ENV CC=clang -ENV WASI_SDK_VERSION=20 +ENV WASI_SDK_VERSION=21 ENV WASI_SDK_PATH=/opt/wasi-sdk ENV WASMTIME_HOME=/opt/wasmtime -ENV WASMTIME_VERSION=18.0.2 +ENV WASMTIME_VERSION=18.0.3 ENV WASMTIME_CPU_ARCH=x86_64 RUN dnf -y --nodocs --setopt=install_weak_deps=False install /usr/bin/{blurb,clang,curl,git,ln,tar,xz} 'dnf-command(builddep)' && \ |