We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/google/jax/releases/tag/jax-v0.3.18 has a breaking change of
jax._src is no longer imported into the from the public jax namespace. This may break users that were using JAX internals.
jax._src
jax
This breaks the current CI with
=================================== FAILURES =================================== ________________________ test_diffable_backend_failure _________________________ def test_diffable_backend_failure(): pyhf.set_backend("numpy", default=True) pyhf.set_backend("jax") def example_op(x): y = pyhf.default_backend.astensor(x) return 2 * y with pytest.raises( ( ValueError, > jax._src.errors.TracerArrayConversionError, jax.errors.ConcretizationTypeError, ) ): E AttributeError: module 'jax' has no attribute '_src' example_op = <function test_diffable_backend_failure.<locals>.example_op at 0x7f352304d2d0> tests/test_backends.py:65: AttributeError
as
pyhf/tests/test_backends.py
Lines 62 to 77 in 37abb3b
The text was updated successfully, but these errors were encountered:
jax.errors
matthewfeickert
Successfully merging a pull request may close this issue.
https://github.com/google/jax/releases/tag/jax-v0.3.18 has a breaking change of
This breaks the current CI with
as
pyhf/tests/test_backends.py
Lines 62 to 77 in 37abb3b
The text was updated successfully, but these errors were encountered: