Skip to content

Commit 2099c08

Browse files
Jammy2211claude
authored andcommitted
fix: skip pynufft on Python 3.13 CI
pynufft's build process tries to compile scipy from source in an isolated build environment, failing without system OpenBLAS. Install only numba on 3.13; pynufft remains available via [optional] on 3.12. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7a6dcfc commit 2099c08

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
unittest:
77
runs-on: ubuntu-latest
88
strategy:
9-
fail-fast: false
9+
fail-fast: false
1010
matrix:
1111
python-version: ['3.12', '3.13']
1212
steps:
@@ -72,7 +72,7 @@ jobs:
7272
if [ "${{ matrix.python-version }}" = "3.12" ]; then
7373
pip install "./PyAutoArray[optional]" "./PyAutoGalaxy[optional]" "./PyAutoLens[optional]"
7474
else
75-
pip install numba pynufft
75+
pip install numba
7676
fi
7777
- name: Run tests
7878
run: |

0 commit comments

Comments
 (0)