From a1423e9c5b88012cf5921e0397d5350b075a2337 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Tue, 7 Dec 2021 23:59:34 +0100
Subject: [PATCH] Use "python3 -m venv" instead of "pyvenv".

---
 run.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/run.sh b/run.sh
index 5fe6132..8ac8b3c 100755
--- a/run.sh
+++ b/run.sh
@@ -6,7 +6,7 @@ set -e
 
 DIR_ENV=.temp_env
 
-pyvenv $DIR_ENV 
+python3 -m venv $DIR_ENV
 source $DIR_ENV/bin/activate
 pip install -r requirements.txt
 echo
-- 
2.30.2