Skip to content

Commit

Permalink
maint: fix jax version specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Gattocrucco committed Mar 27, 2023
1 parent 2b1934f commit 0153b52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
install_requires=[
'numpy>=1.20', # first version with broadcast_shapes
'scipy>=1.5', # minimum required by jax
'jax>=0.4.1<=0.4.6', # 0.4.1 first supporting type dispatching on jax arrays
'jaxlib>=0.4.1<=0.4.6', # 0.4.6 last supporting old jit implementation, the new one triggers a leaked tracer exception in linalg operations
'jax>=0.4.1,<=0.4.6', # 0.4.1 first supporting type dispatching on jax arrays
'jaxlib>=0.4.1,<=0.4.6', # 0.4.6 last supporting old jit implementation, the new one triggers a leaked tracer exception in linalg operations
'gvar>=11.10.1', # first supporting gvar.gvar(x, cov) with readonly cov
]
)

0 comments on commit 0153b52

Please sign in to comment.