Skip to content

Commit

Permalink
Merge branch 'release/1.1.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaudiaComito committed Sep 14, 2021
2 parents acb26f7 + 2343d00 commit 45d4a00
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
- [#853](https://github.com/helmholtz-analytics/heat/pull/853) New Feature: `swapaxes`
- [#854](https://github.com/helmholtz-analytics/heat/pull/854) New Feature: `moveaxis`

# v1.1.1
- [#864](https://github.com/helmholtz-analytics/heat/pull/864) Dependencies: constrain `torchvision` version range to match supported `pytorch` version range.

# v1.1.0

Expand Down
5 changes: 1 addition & 4 deletions heat/core/dndarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class DNDarray:
balanced: bool or None
Describes whether the data are evenly distributed across processes.
If this information is not available (``self.balanced is None``), it
can be gathered via the :func:`is_distributed()` method (requires communication).
can be gathered via the :func:`is_balanced()` method (requires communication).
"""

def __init__(
Expand Down Expand Up @@ -180,9 +180,6 @@ def nbytes(self) -> int:
def ndim(self) -> int:
"""
Number of dimensions of the ``DNDarray``
.. deprecated:: 0.5.0
`numdims` will be removed in HeAT 1.0.0, it is replaced by `ndim` because the latter is numpy API compliant.
"""
return len(self.__gshape)

Expand Down
2 changes: 1 addition & 1 deletion heat/core/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""Indicates HeAT's main version."""
minor: int = 1
"""Indicates feature extension."""
micro: int = 0
micro: int = 1
"""Indicates revisions for bugfixes."""
extension: str = None
"""Indicates special builds, e.g. for specific hardware."""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"torch>=1.7.0, <1.9",
"scipy>=0.14.0",
"pillow>=6.0.0",
"torchvision>=0.8.0",
"torchvision>=0.8.0, <0.10",
],
extras_require={
"docutils": ["docutils>=0.16"],
Expand Down

0 comments on commit 45d4a00

Please sign in to comment.