Skip to content
This repository was archived by the owner on Aug 30, 2025. It is now read-only.

Commit 95d7a20

Browse files
Restrict Meson version to <1.8.0 in naev-steamruntime
1 parent b4a76d4 commit 95d7a20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

naev-steamruntime/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pip \
145145
apt-get clean && \
146146
# Install mutagen module for soundtrack generation
147147
python3 -m pip install mutagen && \
148-
# Need Meson >=1.7.0 for rust_std=2024, which is obviously not up-to-date in steamOS
149-
python3 -m pip install meson --upgrade && \
148+
# Need Meson >=1.7.0 for rust_std=2024, but restrict to versions below 1.8.0.
149+
python3 -m pip install 'meson>=1.7.0,<1.8.0' --upgrade && \
150150
# Verify meson and python.
151151
echo "Verifying python install" && \
152152
command -v python3 && \

0 commit comments

Comments
 (0)