From 964e06dd10140199f8f8c32f765d6e24f03cc235 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Wed, 31 Jan 2018 22:08:09 +0100 Subject: [PATCH] use pywin32-ctypes instead of pypiwin32 pypiwin32 might be going away for pywin32 at some point; and while looking into this I've found that pywin32-ctypes should be enough for our needs --- contrib/build-wine/prepare-wine.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/build-wine/prepare-wine.sh b/contrib/build-wine/prepare-wine.sh index 44c20ab2c..ad26fca13 100755 --- a/contrib/build-wine/prepare-wine.sh +++ b/contrib/build-wine/prepare-wine.sh @@ -72,8 +72,8 @@ done # upgrade pip $PYTHON -m pip install pip --upgrade -# Install PyWin32 -$PYTHON -m pip install pypiwin32 +# Install pywin32-ctypes (needed by pyinstaller) +$PYTHON -m pip install pywin32-ctypes # Install PyQt $PYTHON -m pip install PyQt5