From c0e1d9e4de3ca53200b171375bcc20498226cdbd Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Tue, 7 Apr 2020 17:09:59 +0300 Subject: [PATCH] Attempt to use newer version of setuptools --- scripts/setup-osx.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/setup-osx.sh b/scripts/setup-osx.sh index 193c4ad1b..b214f2fda 100644 --- a/scripts/setup-osx.sh +++ b/scripts/setup-osx.sh @@ -3,8 +3,9 @@ echo "Python version:" python3 --version echo "Upgrading pip..." python3 -m pip install --upgrade pip -echo "Installing hardcoded app requirements for debugging..." -python3 -m pip install setuptools==42.0.2 +# See issue #2156 +echo "Upgrading setuptools..." +python3 -m pip install --upgrade setuptools echo "Installing app requirements..." python3 -m pip install -r requirements.txt echo "Installing packaging tools..."