Skip to content

Commit 69ebe59

Browse files
committed
ci: explicitly test non-gil wheels
1 parent 8cf5917 commit 69ebe59

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def mac_wheels(pythonVersions, testPackages, params, wheelStashes){
162162
)
163163
def fusedWheel = findFiles(excludes: '', glob: 'out/*.whl')[0]
164164
def props = readTOML( file: 'pyproject.toml')['project']
165-
def universalWheel = "uiucprescon.imagevalidate-${props.version}-cp${pythonVersion.replace('.','')}-cp${pythonVersion.replace('.','')}-macosx_11_0_universal2.whl"
165+
def universalWheel = "uiucprescon.imagevalidate-${props.version}-cp${pythonVersion.replace('.','').replace('+gil','')}-cp${pythonVersion.replace('.','').replace('+gil','')}-macosx_11_0_universal2.whl"
166166
sh "mv ${fusedWheel.path} ./dist/${universalWheel}"
167167
stash includes: 'dist/*.whl', name: "python${pythonVersion} mac-universal2 wheel"
168168
wheelStashes << "python${pythonVersion} mac-universal2 wheel"
@@ -197,7 +197,7 @@ def mac_wheels(pythonVersions, testPackages, params, wheelStashes){
197197
trap "rm -rf venv" EXIT
198198
./venv/bin/python -m pip install --disable-pip-version-check uv
199199
trap "rm -rf venv && rm -rf .tox" EXIT
200-
venv/bin/uv run --only-group=tox-uv tox --installpkg ${it.path} -e py${pythonVersion.replace('.', '')}
200+
venv/bin/uv run --only-group=tox-uv tox --installpkg ${it.path} -e py${pythonVersion.replace('.', '').replace('+gil', '')}
201201
"""
202202
)
203203
}

0 commit comments

Comments
 (0)