diff --git a/package/AUTHORS b/package/AUTHORS index 81ada5e07c..3d6d5b9e1f 100644 --- a/package/AUTHORS +++ b/package/AUTHORS @@ -274,6 +274,7 @@ Chronological list of authors - Jeremy M. G. Leung - Harshit Gajjela - Kunj Sinha + - Kriti Dogra - Ayush Agarwal - Parth Uppal - Olivier Languin--Cattoën diff --git a/package/CHANGELOG b/package/CHANGELOG index c073e01b97..eea2a362ff 100644 --- a/package/CHANGELOG +++ b/package/CHANGELOG @@ -22,7 +22,8 @@ The rules for this file: * 2.11.0 Fixes - * Fixes TypeError with np.int64 indexing in GSD Reader (Issue #5224) + * Fixes TypeError with np.int64 indexing in GSD Reader (Issue #5224) + * Fix doctest output in transformations.py for newer NumPy (Issue #3925, PR #5283) * Fixed bug in add_transformations allowing non-callable transformations (Issue #2558, PR #2558) * Drop/Replace lock file test in test_xdr (Issue #5236, PR #5237) diff --git a/package/MDAnalysis/lib/transformations.py b/package/MDAnalysis/lib/transformations.py index 27e5f01db9..2c96e6c129 100644 --- a/package/MDAnalysis/lib/transformations.py +++ b/package/MDAnalysis/lib/transformations.py @@ -795,7 +795,7 @@ def decompose_matrix(matrix): >>> S = scale_matrix(0.123) >>> scale, shear, angles, trans, persp = decompose_matrix(S) >>> scale[0] - 0.123 + np.float64(0.123) >>> R0 = euler_matrix(1, 2, 3) >>> scale, shear, angles, trans, persp = decompose_matrix(R0) >>> R1 = euler_matrix(*angles)