From 1f4dbb9290ac3cdcfbe5b2b23af0a0df693ecdc3 Mon Sep 17 00:00:00 2001 From: Himura Kazuto Date: Fri, 2 Feb 2024 11:24:47 +0300 Subject: [PATCH] Downdrade to Python 3.9 https://discuss.wxpython.org/t/facing-an-error-in-wx-library-file-rcsizer-py/36685 --- bin/ci.psm1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/ci.psm1 b/bin/ci.psm1 index 86eff90..15b6b76 100644 --- a/bin/ci.psm1 +++ b/bin/ci.psm1 @@ -7,10 +7,10 @@ function FestEngineGetDeps { $env:VER = $env:APPVEYOR_REPO_COMMIT.substring(0,7) } if ($env:ARCH -eq '32') { - $env:PYTHON_PATH = 'C:\Python311' + $env:PYTHON_PATH = 'C:\Python39' $env:VLC_ARCH_FLAG = '--x86' } else { - $env:PYTHON_PATH = 'C:\Python311-x64' + $env:PYTHON_PATH = 'C:\Python39-x64' } if ($env:VLC -eq 'latest') { $env:VLC_VERSION = ((choco list vlc | Select-String -Pattern '^vlc [\d\.]* \[Approved\]') -split ' ')[1]