From 86ce4cfd7c2ecf5a11bd2ab51cae1a8405ff0b8b Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Tue, 5 Dec 2023 08:31:55 +0000 Subject: [PATCH] fix(gitpod): Make sure jinja2 and towncrier are available Part-of: --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 2761f490c..d996a8a13 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -6,6 +6,6 @@ RUN sudo apt update -y \ RUN pyenv install 3.11 && pyenv global 3.11 -RUN pip install poetry pre-commit \ +RUN pip install poetry pre-commit jinja2 towncrier \ && poetry config virtualenvs.create true \ && poetry config virtualenvs.in-project true