Skip to content
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