From 98a8332cfa1b3ed485e11a650bdded383fbbf3a4 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Mon, 3 Feb 2020 13:33:26 +0300 Subject: [PATCH] Change the way we update pip for mac os builds --- scripts/setup-osx.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/setup-osx.sh b/scripts/setup-osx.sh index dcfcd4492..d7e322aee 100644 --- a/scripts/setup-osx.sh +++ b/scripts/setup-osx.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -echo "Upgrading pip" -sudo python3 -m ensurepip --upgrade echo "Checking python version" python3 --version +echo "Upgrading pip" +python3 -m pip install --upgrade pip echo "Installing app requirements" python3 -m pip install -r requirements.txt echo "Installing packaging tools"