Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .evergreen/generated_configs/variants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ buildvariants:
batchtime: 1440
expansions:
VERSION: latest
PYTHON_BINARY: /usr/bin/python3.11
NO_EXT: "1"
REQUIRE_FIPS: "1"
tags: []
Expand All @@ -21,6 +22,7 @@ buildvariants:
batchtime: 1440
expansions:
VERSION: latest
PYTHON_BINARY: /usr/bin/python3.11
NO_EXT: "1"
tags: []
- name: other-hosts-rhel8-power8-latest
Expand All @@ -32,6 +34,7 @@ buildvariants:
batchtime: 1440
expansions:
VERSION: latest
PYTHON_BINARY: /usr/bin/python3.11
NO_EXT: "1"
tags: []
- name: other-hosts-rhel8-arm64-latest
Expand All @@ -43,6 +46,7 @@ buildvariants:
batchtime: 1440
expansions:
VERSION: latest
PYTHON_BINARY: /usr/bin/python3.11
NO_EXT: "1"
tags: []
- name: other-hosts-amazon2023-latest
Expand All @@ -54,6 +58,7 @@ buildvariants:
batchtime: 1440
expansions:
VERSION: latest
PYTHON_BINARY: /usr/bin/python3.11
NO_EXT: "1"
tags: [pr]

Expand Down
3 changes: 2 additions & 1 deletion .evergreen/scripts/generate_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,8 @@ def create_alternative_hosts_variants():

version = "latest"
for host_name in OTHER_HOSTS:
expansions = dict(VERSION="latest")
# Use explicit Python 3.11 binary on the host since the default python3 is 3.9.
expansions = dict(VERSION="latest", PYTHON_BINARY="/usr/bin/python3.11")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for my own curiosity, why 3.11 and not 3.10?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's what is already installed by the OS on that host

handle_c_ext(C_EXTS[0], expansions)
host = HOSTS[host_name]
tags = []
Expand Down
Loading