Skip to content

Commit

Permalink
Merge pull request h5py#1464 from kmuehlbauer/fix-744
Browse files Browse the repository at this point in the history
FIX: remove `base.MappingHDF5` from `dims.DimensionManager`
  • Loading branch information
takluyver authored Dec 14, 2019
2 parents 0ab59b4 + e1d835a commit 2ecafd9
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion h5py/_hl/dims.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def __repr__(self):
% (self.label, self._dimension, id(self._id)))


class DimensionManager(base.MappingHDF5, base.CommonStateObject):
class DimensionManager(base.CommonStateObject):

"""
Represents a collection of dimension associated with a dataset.
Expand Down
29 changes: 29 additions & 0 deletions news/dims-collection.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
New features
------------

* <news item>

Deprecations
------------

* <news item>

Exposing HDF5 functions
-----------------------

* <news item>

Bug fixes
---------

* Remove `base.MappingHDF5` from `dims.DimensionManager` class definition to handle as collection only, resolves https://github.com/h5py/h5py/issues/744.

Building h5py
-------------

* <news item>

Development
-----------

* <news item>

0 comments on commit 2ecafd9

Please sign in to comment.