@@ -238,6 +238,12 @@ jobs:
238238 python-arch : ' x86_64'
239239 python-version : ' 3.12'
240240 numpy-version : ' 2.0.*'
241+ - os-image : ubuntu-latest
242+ os-name : linux
243+ docker-image : quay.io/pypa/manylinux2014_x86_64
244+ python-arch : ' x86_64'
245+ python-version : ' 3.12'
246+ numpy-version : ' 1.26.4'
241247
242248 - os-image : ubuntu-latest
243249 os-name : linux
@@ -263,6 +269,12 @@ jobs:
263269 python-arch : ' aarch64'
264270 python-version : ' 3.12'
265271 numpy-version : ' 2.0.*'
272+ - os-image : ubuntu-latest
273+ os-name : linux
274+ docker-image : quay.io/pypa/manylinux2014_aarch64
275+ python-arch : ' aarch64'
276+ python-version : ' 3.12'
277+ numpy-version : ' 1.26.4'
266278
267279 - os-image : macos-12
268280 os-name : mac
@@ -288,6 +300,12 @@ jobs:
288300 python-arch : ' x86_64'
289301 python-version : ' 3.12'
290302 numpy-version : ' 2.0.*'
303+ - os-image : macos-12
304+ os-name : mac
305+ macos-min-version : ' 10.9'
306+ python-arch : ' x86_64'
307+ python-version : ' 3.12'
308+ numpy-version : ' 1.26.4'
291309
292310 - os-image : macos-14 # M1
293311 os-name : mac
@@ -313,6 +331,12 @@ jobs:
313331 python-arch : ' arm64'
314332 python-version : ' 3.12'
315333 numpy-version : ' 2.0.*'
334+ - os-image : macos-14 # M1
335+ os-name : mac
336+ macos-min-version : ' 11.0'
337+ python-arch : ' arm64'
338+ python-version : ' 3.12'
339+ numpy-version : ' 1.26.4'
316340
317341 - os-image : windows-2019
318342 os-name : windows
@@ -334,6 +358,11 @@ jobs:
334358 python-arch : ' x86_64'
335359 python-version : ' 3.12'
336360 numpy-version : ' 2.0.*'
361+ - os-image : windows-2019
362+ os-name : windows
363+ python-arch : ' x86_64'
364+ python-version : ' 3.12'
365+ numpy-version : ' 1.26.4'
337366
338367 runs-on : ${{ matrix.config.os-image }}
339368
@@ -361,6 +390,7 @@ jobs:
361390 env :
362391 PYTHON_ARCH : ${{ matrix.config.python-arch }}
363392 PYTHON_VERSION : ${{ matrix.config.python-version }}
393+ NUMPY_VERSION : ${{ matrix.config.numpy-version }}
364394
365395 - name : Setup Python (Windows)
366396 if : matrix.config.os-name == 'windows'
@@ -375,6 +405,7 @@ jobs:
375405 env :
376406 PYTHON_VERSION : ${{ matrix.config.python-version }}
377407 PYTHON_ARCH : ${{ matrix.config.python-arch }}
408+ NUMPY_VERSION : ${{ matrix.config.numpy-version }}
378409
379410 - name : Setup Python (macOS)
380411 if : matrix.config.os-name == 'mac'
@@ -388,6 +419,7 @@ jobs:
388419 env :
389420 PYTHON_ARCH : ${{ matrix.config.python-arch }}
390421 PYTHON_VERSION : ${{ matrix.config.python-version }}
422+ NUMPY_VERSION : ${{ matrix.config.numpy-version }}
391423
392424 docs :
393425 runs-on : ubuntu-latest
0 commit comments