Skip to content

Commit 456a463

Browse files
Align advertised Metropolis stats_dtypes with changes from 1e7d91f
1 parent 3f2afb2 commit 456a463

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

RELEASE-NOTES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Release Notes
22

3-
## PyMC 4.0.0
3+
## PyMC 4.0.1 (vNext)
4+
+ Fixed an incorrect entry in `pm.Metropolis.stats_dtypes` (see #5582).
5+
+ ...
6+
7+
## PyMC 4.0.0 (2022-06-03)
48

59
**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)**.
610
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 🍾

pymc/step_methods/metropolis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class Metropolis(ArrayStepShared):
120120
stats_dtypes = [
121121
{
122122
"accept": np.float64,
123-
"accepted": bool,
123+
"accepted": np.float64,
124124
"tune": bool,
125125
"scaling": np.float64,
126126
}

0 commit comments

Comments
 (0)