You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in scico.random. Since most tests are passing when pytest is run locally, this is presumably due to a recent update of the version of some dependency package in the github CI run environment.
The text was updated successfully, but these errors were encountered:
It looks to me like the CI just grabs the latest jax: jax>=0.2.19. This is bad, right? Given that the jax API is changing, I would suggest we pin SCICO to a specific version of jax.
I've seen this error before. My best guess: a new helper function got added to jax.random; one that doesn't take shape as an argument. We are running the scico.random wrapper over all functions that aren't explicitly prohibited. This happened with threefry_2x32 and I fixed it in this commit: https://github.com/scici/scico/commit/3cb896d547f28862e3cc82d253ab15eaf4332cde. I'd suggest looking at the functions here and seeing if any of them are the problem:
All tests are currently failing with an error
ValueError: 'shape' is not in list
. This appears to be related to the linein
scico.random
. Since most tests are passing when pytest is run locally, this is presumably due to a recent update of the version of some dependency package in the github CI run environment.The text was updated successfully, but these errors were encountered: