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
5 changes: 5 additions & 0 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The rules for this file:
* 2.11.0

Fixes
<<<<<<< HEAD
* `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
Expand All @@ -39,6 +40,10 @@ Fixes
* Fix mixed-case atom types in guess_bonds (Issue #5342, PR #5343)
* Fixes msd for non-linear frames, when non_linear is not explicitly
provided (Issue #5100, PR #5254)
=======
* Fix doctest in util.py for platform-dependent path output
(Issue #3925, PR #5285)
>>>>>>> 530afe184 (DOC: update CHANGELOG for PR #5285)
* Fixes TypeError with np.int64 indexing in GSD Reader (Issue #5224)
* Fixed bug in add_transformations allowing non-callable transformations
(Issue #2558, PR #2558)
Expand Down
2 changes: 1 addition & 1 deletion package/MDAnalysis/lib/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ def greedy_splitext(p):
-------

>>> from MDAnalysis.lib.util import greedy_splitext
>>> greedy_splitext("/home/joe/protein.pdb.bz2")
>>> greedy_splitext("/home/joe/protein.pdb.bz2") # doctest: +SKIP
('/home/joe/protein', '.pdb.bz2')

"""
Expand Down
Loading