Skip to content

Commit 327a1e2

Browse files
committed
fix ci?
1 parent 9afed29 commit 327a1e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install Dependencies
1616
run: |
1717
python -m pip install --upgrade pip
18-
python -m pip install pytest numpy torch dask[array] jax[cpu]>=0.4.24
18+
python -m pip install pytest numpy torch dask[array] jax[cpu]
1919
2020
- name: Run Tests
2121
run: |

tests/_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
def import_(library, wrapper=False):
99
if library == 'cupy':
1010
return pytest.importorskip(library)
11-
if 'jax' in library and sys.version_info <= (3, 8):
11+
if 'jax' in library and sys.version_info < (3, 9):
1212
pytest.skip('JAX array API support does not support Python 3.8')
1313

1414
if wrapper:

0 commit comments

Comments
 (0)