diff --git a/package/AUTHORS b/package/AUTHORS index ee280c52bd..2077fe56be 100644 --- a/package/AUTHORS +++ b/package/AUTHORS @@ -273,6 +273,7 @@ Chronological list of authors - Kushagar Garg - Jeremy M. G. Leung - Harshit Gajjela + - Kriti Dogra - Kunj Sinha External code diff --git a/package/CHANGELOG b/package/CHANGELOG index eefad7b8a7..3c06d89e90 100644 --- a/package/CHANGELOG +++ b/package/CHANGELOG @@ -22,6 +22,10 @@ The rules for this file: Fixes * Fixes TypeError with np.int64 indexing in GSD Reader (Issue #5224) + * Fix doctest output in transformations.py for newer NumPy + (Issue #3925, PR #5283) + * Fix doctest in util.py for platform-dependent path output + (Issue #3925, PR #5285) * 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)