From cc3c2cb9c812f5457d739cc134efeffa90382ae7 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Wed, 12 Feb 2020 18:22:31 +0300 Subject: [PATCH] Add hack to build wx on windows --- .appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 0b897a0ef..28b5a2c26 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -40,6 +40,8 @@ install: # pip will build them from source using the MSVC compiler matching the # target Python version and architecture - ps: echo("Install pip requirements:") + # This one is needed to build wxpython 4.0.6 on windows + - cmd: "python -m pip install pathlib" - cmd: "python -m pip install -r requirements.txt" - cmd: "python -m pip install PyInstaller==3.6"