From 6725775acf27cc3d09fc7dbd0a0fa2d9b5bdab4f Mon Sep 17 00:00:00 2001 From: Renato Valenzuela <37676028+valerena@users.noreply.github.com> Date: Thu, 6 Feb 2025 10:06:53 -0800 Subject: [PATCH] test: Set Python3.9 for AppVeyor tests (#7871) Previous jump from Python3.8 to 3.11 might have caused some issues --- appveyor-ubuntu.yml | 4 ++-- appveyor-windows-al2023.yml | 8 ++++---- appveyor-windows.yml | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/appveyor-ubuntu.yml b/appveyor-ubuntu.yml index a9d183733d..a11ff21d72 100644 --- a/appveyor-ubuntu.yml +++ b/appveyor-ubuntu.yml @@ -16,8 +16,8 @@ configuration: - OtherAndEndToEndTesting environment: - PYTHON_HOME: "$HOME/venv3.11/bin" - PYTHON_VERSION: '3.11' + PYTHON_HOME: "$HOME/venv3.9/bin" + PYTHON_VERSION: '3.9' AWS_DEFAULT_REGION: us-east-1 SAM_CLI_DEV: 1 NODE_VERSION: "18.18.2" diff --git a/appveyor-windows-al2023.yml b/appveyor-windows-al2023.yml index bee6e0665d..1980827eb1 100644 --- a/appveyor-windows-al2023.yml +++ b/appveyor-windows-al2023.yml @@ -13,10 +13,10 @@ environment: TMPDIR: "%TEMP%" TMP: "%TEMP%" - # MSI Installers use Py3.11. It is sufficient to test with this version here. - PYTHON_HOME: "C:\\Python311-x64" - PYTHON_SCRIPTS: "C:\\Python311-x64\\Scripts" - PYTHON_EXE: "C:\\Python311-x64\\python.exe" + # MSI Installers use Py3.9. It is sufficient to test with this version here. + PYTHON_HOME: "C:\\Python39-x64" + PYTHON_SCRIPTS: "C:\\Python39-x64\\Scripts" + PYTHON_EXE: "C:\\Python39-x64\\python.exe" PYTHON_ARCH: "64" HOME: 'C:\Users\appveyor' HOMEDRIVE: "C:" diff --git a/appveyor-windows.yml b/appveyor-windows.yml index 69bdd052f3..024699854a 100644 --- a/appveyor-windows.yml +++ b/appveyor-windows.yml @@ -26,10 +26,10 @@ environment: TMPDIR: "%TEMP%" TMP: "%TEMP%" - # MSI Installers uses Py3.11. It is sufficient to test with this version here. - PYTHON_HOME: "C:\\Python311-x64" - PYTHON_SCRIPTS: "C:\\Python311-x64\\Scripts" - PYTHON_EXE: "C:\\Python311-x64\\python.exe" + # MSI Installers uses Py3.9. It is sufficient to test with this version here. + PYTHON_HOME: "C:\\Python39-x64" + PYTHON_SCRIPTS: "C:\\Python39-x64\\Scripts" + PYTHON_EXE: "C:\\Python39-x64\\python.exe" PYTHON_ARCH: "64" HOME: 'C:\Users\appveyor' HOMEDRIVE: "C:"