Skip to content

Commit d887090

Browse files
scripts/test.py: improve --cibw-release-2.
Need to restrict linuxaarch testing to python-3.9 and python-3.13, otherwise it times-out on github.
1 parent d990d7c commit d887090

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,9 @@ def main(argv):
346346

347347
elif arg == '--cibw-release-2':
348348
env_extra['CIBW_ARCHS_LINUX'] = 'aarch64'
349+
# Testing only first and last python versions because otherwise
350+
# Github times out after 6h.
351+
env_extra['CIBW_BUILD'] = 'cp39* cp313*'
349352
os_names = ['linux']
350353

351354
elif arg == '--cibw-archs-linux':

0 commit comments

Comments
 (0)