Skip to content

Commit 4e0b0a5

Browse files
committed
Restrict to <=3.11. Numba not available for 3.12
1 parent bd77ec4 commit 4e0b0a5

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12']
12+
python-version: [ '3.8', '3.9', '3.10', '3.11']
1313

1414
name: Test Interpolation.py (Python ${{ matrix.python-version }})
1515
steps:

interpolation/multilinear/tests/test_multilinear.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ def test_multilinear():
117117

118118
for t in tests:
119119
tt = [typeof(e) for e in t]
120-
print(tt)
121120
rr = interp(*t)
122121

123122
try:

0 commit comments

Comments
 (0)