From 1968bec72754d53a1db3a4acdcc68d30ba450220 Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Sun, 22 May 2022 14:20:09 -0700 Subject: [PATCH] Use Python 3 commands in build script --- .render.com/build.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.render.com/build.sh b/.render.com/build.sh index 16e67c35..23b2bb4e 100644 --- a/.render.com/build.sh +++ b/.render.com/build.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash set -o errexit -pip install -r requirements.txt +python3 -m pip install --upgrade pip +pip3 install -r requirements.txt -python manage.py migrate +python3 manage.py migrate