Skip to content

Align advertised Metropolis stats_dtypes with changes from 1e7d91f #5882

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

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Release Notes

## PyMC 4.0.0
## PyMC 4.0.1 (vNext)
+ Fixed an incorrect entry in `pm.Metropolis.stats_dtypes` (see #5582).
+ ...

## PyMC 4.0.0 (2022-06-03)

**If you want a description of the highlights of this release, check out the [release announcement](https://www.pymc.io/blog/v4_announcement.html) on our [new website](https://www.pymc.io)**.
Feel free to read it, print it out, and give it to people on the street -- because _everybody_ has to know PyMC 4.0 is officially out 🍾
Expand Down
2 changes: 1 addition & 1 deletion pymc/step_methods/metropolis.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class Metropolis(ArrayStepShared):
stats_dtypes = [
{
"accept": np.float64,
"accepted": bool,
"accepted": np.float64,
"tune": bool,
"scaling": np.float64,
}
Expand Down