File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ buildvariants:
9
9
batchtime : 1440
10
10
expansions :
11
11
VERSION : latest
12
+ PYTHON_BINARY : /usr/bin/python3.11
12
13
NO_EXT : " 1"
13
14
REQUIRE_FIPS : " 1"
14
15
tags : []
@@ -21,6 +22,7 @@ buildvariants:
21
22
batchtime : 1440
22
23
expansions :
23
24
VERSION : latest
25
+ PYTHON_BINARY : /usr/bin/python3.11
24
26
NO_EXT : " 1"
25
27
tags : []
26
28
- name : other-hosts-rhel8-power8-latest
@@ -32,6 +34,7 @@ buildvariants:
32
34
batchtime : 1440
33
35
expansions :
34
36
VERSION : latest
37
+ PYTHON_BINARY : /usr/bin/python3.11
35
38
NO_EXT : " 1"
36
39
tags : []
37
40
- name : other-hosts-rhel8-arm64-latest
@@ -43,6 +46,7 @@ buildvariants:
43
46
batchtime : 1440
44
47
expansions :
45
48
VERSION : latest
49
+ PYTHON_BINARY : /usr/bin/python3.11
46
50
NO_EXT : " 1"
47
51
tags : []
48
52
- name : other-hosts-amazon2023-latest
@@ -54,6 +58,7 @@ buildvariants:
54
58
batchtime : 1440
55
59
expansions :
56
60
VERSION : latest
61
+ PYTHON_BINARY : /usr/bin/python3.11
57
62
NO_EXT : " 1"
58
63
tags : [pr]
59
64
Original file line number Diff line number Diff line change @@ -470,7 +470,8 @@ def create_alternative_hosts_variants():
470
470
471
471
version = "latest"
472
472
for host_name in OTHER_HOSTS :
473
- expansions = dict (VERSION = "latest" )
473
+ # Use explicit Python 3.11 binary on the host since the default python3 is 3.9.
474
+ expansions = dict (VERSION = "latest" , PYTHON_BINARY = "/usr/bin/python3.11" )
474
475
handle_c_ext (C_EXTS [0 ], expansions )
475
476
host = HOSTS [host_name ]
476
477
tags = []
You can’t perform that action at this time.
0 commit comments