We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 239ee79 commit a73388dCopy full SHA for a73388d
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