diff --git a/package/CHANGELOG b/package/CHANGELOG index 642e717b851..d8775f780c5 100644 --- a/package/CHANGELOG +++ b/package/CHANGELOG @@ -29,6 +29,33 @@ Fixes * Fixes incorrect assignment of secondary structure to proline residues in DSSP by porting upstream PyDSSP 0.9.1 fix (Issue #4913) +Changes + +Deprecations + + +11/26/25 IAlibay, orbeckst, marinegor, tylerjereddy, ljwoods2, marinegor, spyke7 + + * 2.11.0 + +Fixes + * Fixes the DeprecationWarning in hbonds_autocorrel.py so as the warning + can be suppressed in mdacli which are not needed(Issue #5157, PR #5159) + +Changes + * In the hbonds\hbonds_autocorrel.py, removed the always keyword. And keeping + the message same (Issue #5157, PR #5159) + +Deprecations + + +11/24/25 IAlibay, orbeckst, marinegor, tylerjereddy, ljwoods2, marinegor, spyke7 + + * 2.11.0 + +Fixes + * Fixes the verbose=False in EinsteinMSD, and only shows progress bar when + verbose=True (Issue #5144, PR #5153) Enhancements * Enables parallelization for analysis.diffusionmap.DistanceMatrix (Issue #4679, PR #4745) diff --git a/package/MDAnalysis/analysis/hbonds/hbond_autocorrel.py b/package/MDAnalysis/analysis/hbonds/hbond_autocorrel.py index 3f80affc814..5d2632a8203 100644 --- a/package/MDAnalysis/analysis/hbonds/hbond_autocorrel.py +++ b/package/MDAnalysis/analysis/hbonds/hbond_autocorrel.py @@ -44,14 +44,12 @@ """ import warnings -with warnings.catch_warnings(): - warnings.simplefilter("always", DeprecationWarning) - wmsg = ( - "This module was moved to " - "MDAnalysis.analysis.hydrogenbonds.hbond_autocorrel; " - "hbonds.hbond_autocorrel will be removed in 3.0.0." - ) - warnings.warn(wmsg, category=DeprecationWarning) +wmsg = ( + "This module was moved to " + "MDAnalysis.analysis.hydrogenbonds.hbond_autocorrel; " + "hbonds.hbond_autocorrel will be removed in 3.0.0." +) +warnings.warn(wmsg, category=DeprecationWarning) from MDAnalysis.lib.util import deprecate