@@ -332,20 +332,21 @@ def build_python(env, dirs, logfp):
332332 # TODO: Python 3.12 started creating an SBOM. We're doing something wrong
333333 # TODO: updating sqlite so SBOM creation is failing. Gating here until we
334334 # TODO: fix this. Here's the original gate:
335- # if env["RELENV_PY_MAJOR_VERSION"] in ["3.10", "3.11"]:
336- if env ["RELENV_PY_MAJOR_VERSION" ] in ["3.10" , "3.11" , "3.12" ]:
335+ # if env["RELENV_PY_MAJOR_VERSION"] in ["3.10", "3.11", "3.12" ]:
336+ if env ["RELENV_PY_MAJOR_VERSION" ] in ["3.10" , "3.11" ]:
337337 update_sqlite (dirs = dirs , env = env )
338338
339339 # XZ-Utils
340340 # TODO: Python 3.12 started creating an SBOM. We're doing something wrong
341341 # TODO: updating XZ so SBOM creation is failing. Gating here until we fix
342342 # TODO: this. Here's the original gate:
343- # if env["RELENV_PY_MAJOR_VERSION"] in ["3.10", "3.11"]:
344- if env ["RELENV_PY_MAJOR_VERSION" ] in ["3.10" , "3.11" , "3.12" , "3.13" , "3.14" ]:
343+ # if env["RELENV_PY_MAJOR_VERSION"] in ["3.10", "3.11", "3.12", "3.13", "3.14" ]:
344+ if env ["RELENV_PY_MAJOR_VERSION" ] in ["3.10" , "3.11" ]:
345345 update_xz (dirs = dirs , env = env )
346346
347- if update_expat_check (env = env ):
348- update_expat (dirs = dirs , env = env )
347+ if env ["RELENV_PY_MAJOR_VERSION" ] in ["3.10" , "3.11" ]:
348+ if update_expat_check (env = env ):
349+ update_expat (dirs = dirs , env = env )
349350
350351 arch_to_plat = {
351352 "amd64" : "x64" ,
0 commit comments