From ac5127686d0c0fb9d8743f571fc0ffd908c901a7 Mon Sep 17 00:00:00 2001 From: hborcher Date: Tue, 19 May 2026 10:42:55 -0500 Subject: [PATCH] ci: fix issue with building universal wheels container +GIL in filename --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9bdfbca6..88ee38ae 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -421,7 +421,7 @@ def mac_wheels(pythonVersions, testPackages, params, wheelStashes){ ) def fusedWheel = findFiles(excludes: '', glob: 'out/*.whl')[0] def props = readTOML( file: 'pyproject.toml')['project'] - def universalWheel = "py3exiv2bind-${props.version}-cp${pythonVersion.replace('.', '').replace('+git', '')}-cp${pythonVersion.replace('.','').replace('+gil', '')}-macosx_11_0_universal2.whl" + def universalWheel = "py3exiv2bind-${props.version}-cp${pythonVersion.replace('.', '').replace('+gil', '')}-cp${pythonVersion.replace('.','').replace('+gil', '')}-macosx_11_0_universal2.whl" sh "mv ${fusedWheel.path} ./dist/${universalWheel}" stash includes: 'dist/*.whl', name: "python${pythonVersion} mac-universal2 wheel" wheelStashes << "python${pythonVersion} mac-universal2 wheel"