Skip to content

Commit

Permalink
test: Set Python3.9 for AppVeyor tests (#7871)
Browse files Browse the repository at this point in the history
Previous jump from Python3.8 to 3.11 might have caused some issues
  • Loading branch information
valerena authored Feb 6, 2025
1 parent 80b67a4 commit 6725775
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions appveyor-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions appveyor-windows-al2023.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:"
Expand Down
8 changes: 4 additions & 4 deletions appveyor-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:"
Expand Down

0 comments on commit 6725775

Please sign in to comment.