diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-06-07 14:54:56 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-06-07 14:54:56 -0400 |
commit | 104ae678a60a09df1e500f3ded920b5d515ee99a (patch) | |
tree | 52f75dfcd342f5665e15c4013bf1272478f3fa58 /.github/workflows | |
parent | da72e958fe0c2ee88d39139f93c4d73897f711ee (diff) |
SL-18837: Tell py.exe to use Python 3.9 instead of 3.11
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 7df15f0668..0d7943ec4a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -32,8 +32,9 @@ jobs: # test-program log output at the specified level, but to display it only if # the individual test fails. LOGFAIL: DEBUG - # Force py.exe to select python3 rather than plain python (2) - PY_PYTHON: "3" + # Force py.exe to select python3.9 rather than the newest install 3.11, + # since the 'pip3' command below seems to be associated with Python 3.9 + PY_PYTHON: "3.9" # but if unit tests fail to import llsd (i.e. wrong Python interpreter), # make py.exe enumerate the possibilities and explain its choice PYLAUNCHER_DEBUG: "1" |