From 245c8d20e1aa47c09f4e89e0ca3c81eaadf45c33 Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Thu, 27 Aug 2020 15:59:04 +0200 Subject: [PATCH] Cert removal and pytools compatibility - remove SSL certificate from winebuild.sh (was causing too many problems, not worth the effort) - set pytools version to 2020.2 in winebuild.sh, as that's the last one to support python2 - fixes #1658 --- buildscripts/winbuild.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/buildscripts/winbuild.sh b/buildscripts/winbuild.sh index da5997bd..edb441ed 100755 --- a/buildscripts/winbuild.sh +++ b/buildscripts/winbuild.sh @@ -67,10 +67,9 @@ function install_python(){ echo "Installing vc_redist (2008) for 32 bit " wine vcredist_x86.exe /Q fi - # add cert - if [ -f /usr/local/share/ca-certificates/bitmessage-proxy.crt ]; then - wine python -m pip config set global.cert 'z:\usr\local\share\ca-certificates\bitmessage-proxy.crt' - fi + echo "Installing pytools 2020.2" + # last version compatible with python 2 + wine python -m pip install pytools==2020.2 echo "Upgrading pip" wine python -m pip install --upgrade pip }