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