We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9afed29 commit 327a1e2Copy full SHA for 327a1e2
.github/workflows/tests.yml
@@ -15,7 +15,7 @@ jobs:
15
- name: Install Dependencies
16
run: |
17
python -m pip install --upgrade pip
18
- python -m pip install pytest numpy torch dask[array] jax[cpu]>=0.4.24
+ python -m pip install pytest numpy torch dask[array] jax[cpu]
19
20
- name: Run Tests
21
tests/_helpers.py
@@ -8,7 +8,7 @@
8
def import_(library, wrapper=False):
9
if library == 'cupy':
10
return pytest.importorskip(library)
11
- if 'jax' in library and sys.version_info <= (3, 8):
+ if 'jax' in library and sys.version_info < (3, 9):
12
pytest.skip('JAX array API support does not support Python 3.8')
13
14
if wrapper:
0 commit comments