Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ Chronological list of authors
- Kushagar Garg
- Jeremy M. G. Leung
- Harshit Gajjela
- Kriti Dogra
- Kunj Sinha

External code
Expand Down
4 changes: 4 additions & 0 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package/MDAnalysis/lib/transformations.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading