Skip to content

Commit a73388d

Browse files
committed
Fix version check
1 parent 239ee79 commit a73388d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/_helpers.py

+1-1
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)