diff --git a/package/AUTHORS b/package/AUTHORS index e8e41573d9..a473f2aa55 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 fd0b869186..1e95f563cc 100644 --- a/package/CHANGELOG +++ b/package/CHANGELOG @@ -22,6 +22,8 @@ The rules for this file: * 2.11.0 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) * `MDAnalysis.analysis.nucleicacids.WatsonCrickDist`, `MinorPairDist`, and `MajorPairDist` now match residue names against the full resname instead of only the first character, fixing incorrect behaviour with 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)