From a6680d33f4a09745f88da99b1cfbb373a9e5d4c9 Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Sun, 22 May 2022 14:18:15 -0700 Subject: [PATCH] Use pip directly in build script --- .render.com/build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.render.com/build.sh b/.render.com/build.sh index 8c25fc3a..16e67c35 100644 --- a/.render.com/build.sh +++ b/.render.com/build.sh @@ -1,7 +1,6 @@ #!/usr/bin/env bash set -o errexit -python -m pip install --upgrade pipenv wheel -pipenv install +pip install -r requirements.txt python manage.py migrate