Skip to content
Open
3 changes: 2 additions & 1 deletion package/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ Chronological list of authors
- Charity Grey
- Sai Udayagiri
- Apoorva Verma
- Kriti Dogra

External code
-------------
Expand Down Expand Up @@ -329,4 +330,4 @@ Logo

The MDAnalysis 'Atom' logo was designed by Christian Beckstein; it is
Copyright (c) 2011 Christian Beckstein and made available under a
Creative Commons Attribution-NoDerivs 3.0 Unported License.
Creative Commons Attribution-NoDerivs 3.0 Unported License.
1 change: 1 addition & 0 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The rules for this file:
* 2.11.0

Fixes
* Fix doctest output in transformations.py for newer NumPy (Issue #3925, PR #5283)
* InterRDF now correctly returns bins in parallel (PR #5344)
* `Merge()` no longer raises a TypeError on Universes that have a `cmaps`
attribute; cmaps are now combined like the other connection attributes
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