diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 4aeb873d29..431f0fc480 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -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 🍾 diff --git a/pymc/step_methods/metropolis.py b/pymc/step_methods/metropolis.py index a96f68068d..532ac93890 100644 --- a/pymc/step_methods/metropolis.py +++ b/pymc/step_methods/metropolis.py @@ -120,7 +120,7 @@ class Metropolis(ArrayStepShared): stats_dtypes = [ { "accept": np.float64, - "accepted": bool, + "accepted": np.float64, "tune": bool, "scaling": np.float64, }