From 6ff1400bb31369f4f11aa45c59241bed7bcb29fd Mon Sep 17 00:00:00 2001 From: Catherine Angel Date: Fri, 23 Feb 2024 22:48:58 +0700 Subject: [PATCH] fix: change python version --- build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index 1fb4487..0176276 100644 --- a/build.sh +++ b/build.sh @@ -1,11 +1,11 @@ #!/bin/bash echo "Installing all requirements" -python3.11 -m pip install -r requirements.txt +python3.9 -m pip install -r requirements.txt echo "Migrating" -python3.11 manage.py makemigrations --noinput -python3.11 manage.py migrate --noinput +python3.9 manage.py makemigrations --noinput +python3.9 manage.py migrate --noinput echo "Collect Static" -python3.11 manage.py collectstatic --noinput --clear +python3.9 manage.py collectstatic --noinput --clear