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

Fixes
* Fix doctest in util.py for platform-dependent path output
(Issue #3925, 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