From 27d135fee7c21155c5fde69809cfb706713c578f Mon Sep 17 00:00:00 2001 From: missytake Date: Mon, 13 Nov 2023 18:25:40 +0100 Subject: [PATCH] python3-venv was missing --- deploy-chatmail/src/deploy_chatmail/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy-chatmail/src/deploy_chatmail/__init__.py b/deploy-chatmail/src/deploy_chatmail/__init__.py index ff7b756f..e842d2fa 100644 --- a/deploy-chatmail/src/deploy_chatmail/__init__.py +++ b/deploy-chatmail/src/deploy_chatmail/__init__.py @@ -25,8 +25,8 @@ def _install_chatmaild() -> None: ) apt.packages( - name="apt install python3-aiosmtpd", - packages=["python3-aiosmtpd", "python3-pip"], + name="apt install python3-aiosmtpd python3-pip python3-venv", + packages=["python3-aiosmtpd", "python3-pip", "python3-venv"], ) # --no-deps because aiosmtplib is installed with `apt`.