-
-
Notifications
You must be signed in to change notification settings - Fork 53
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
Bump PyMC version requirement #431
Bump PyMC version requirement #431
Conversation
Seems like we need to ignore the numpy import warning or pin tests to numpy<2.0. It's coming from pymc |
Why aren't tests failing on the pymc side? We also do |
We're not failing on warnings there. It was easier to do it here because we started from scratch with the testing suite |
oh duh it's |
02b52dc
to
907b083
Compare
86cc6eb
to
34c66ad
Compare
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.
Thanks @jessegrabowski , this looks good! Shall I merge?
yes please! |
Closes #430
Related to #429
The latest pytensor release breaks several places in the statespace code. I was using a rewrite to introduce
method='svd'
to multivariate_normal forward samples; this is no longer needed. There was also anif Variable:
check, which now needs to beif Variable is not None
.