We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47b3658 commit e968e1fCopy full SHA for e968e1f
pymc3/sampling.py
@@ -464,9 +464,10 @@ def sample(
464
v = packaging.version.parse(pm.__version__)
465
if v.release[0] > 3 or v.release[1] >= 10: # type: ignore
466
warnings.warn(
467
- "In an upcoming release, pm.sample will return an `arviz.InferenceData` object instead of a `MultiTrace` by default. "
+ "In v4.0, pm.sample will return an `arviz.InferenceData` object instead of a `MultiTrace` by default. "
468
"You can pass return_inferencedata=True or return_inferencedata=False to be safe and silence this warning.",
469
FutureWarning,
470
+ stacklevel=2,
471
)
472
# set the default
473
return_inferencedata = False
0 commit comments