From 66bd79b6133627d169f66ace4c2b1f47b1586d93 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Thu, 2 Nov 2023 11:09:03 +0100 Subject: [PATCH] chore(gitpod): Pin python version to 3.11 Part-of: --- .gitpod/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 32aaa42f2..2761f490c 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -4,6 +4,8 @@ USER gitpod RUN sudo apt update -y \ && sudo apt install libsasl2-dev libldap2-dev libssl-dev ffmpeg gettext -y +RUN pyenv install 3.11 && pyenv global 3.11 + RUN pip install poetry pre-commit \ && poetry config virtualenvs.create true \ && poetry config virtualenvs.in-project true