-
Notifications
You must be signed in to change notification settings - Fork 21
Relax JAX constraint from jax<0.7 to jax #107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@epignatelli 👋 This repository doesn't have Copilot instructions. With Copilot instructions, I can understand the repository better, work faster and produce higher quality PRs. I can generate a .github/copilot-instructions.md file for you automatically. Click here to open a pre-filled issue and assign it to me. I'll write the instructions, and then tag you for review. |
Co-authored-by: epignatelli <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You have to manually increase the version number of NAVIX also.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
This PR removes the temporary JAX version constraint that was preventing installation of JAX >= 0.7.
Background
In PR #103, we temporarily constrained JAX to
jax<0.7
due to a compatibility issue with distrax library (google-deepmind/distrax#295). The constraint was added to prevent breaking changes while the distrax team resolved the compatibility issue.Changes
requirements.txt
to remove the version constraint, changingjax<0.7 # 0.7 breaks distrax
to simplyjax
Verification
pip install jax --dry-run
successfully resolves to JAX 0.7.1This change enables users to install the latest JAX versions while maintaining compatibility with distrax and other dependencies.
Fixes #104.
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.