From a648e1f0811f51b9df97c692b012fd264a67ca52 Mon Sep 17 00:00:00 2001 From: Justin DuJardin Date: Wed, 29 Nov 2023 11:40:48 -0800 Subject: [PATCH] Add Python version check to setup.sh --- tools/setup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/setup.sh b/tools/setup.sh index e993e8e..5db5798 100644 --- a/tools/setup.sh +++ b/tools/setup.sh @@ -1,6 +1,8 @@ #!/bin/bash set -e +python3 --version + # Make the virtualenv only if the folder doesn't exist DIR=.env if [ ! -d "${DIR}" ]; then