We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fa4e49 commit d175b24Copy full SHA for d175b24
1 file changed
.github/workflows/tests.yml
@@ -10,10 +10,13 @@ jobs:
10
tests:
11
strategy:
12
fail-fast: true
13
- matrix: # See pyproject.toml
+ matrix:
14
python-version: ["3.10", "3.11", "3.12"]
15
numpy-version:
16
- - "numpy>=2.0.0,<2.2.0" # 23-Jan-2026 Colab uses 2.0.2
+ - "numpy==1.26.4" # current colab version
17
+ - "numpy~=2.0" # 2.0 series
18
+ # numba (0.60.0) does not yet support numpy 2.1, disable this for now
19
+ # - "numpy~=2.1" # 2.1 series
20
runs-on: ubuntu-latest
21
22
steps:
0 commit comments