Skip to content

Commit

Permalink
removed last sonarqube smell
Browse files Browse the repository at this point in the history
  • Loading branch information
maekke97 committed Sep 19, 2017
1 parent 2aaae54 commit 038bb81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion HierMat/rmat.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,6 @@ def _mul_with_int(self, other):
def __rmul__(self, other):
"""Multiplication numpy.matrix * RMat"""
if isinstance(other, numpy.matrix):
# return RMat(other * self.left_mat, self.right_mat, self.max_rank)
return other * self.to_matrix()
elif isinstance(other, numbers.Number):
return self._mul_with_int(other)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

setup(
name='HierMat',
version='0.9.1',
version='0.9.2',
packages=['HierMat', 'HierMat/examples'],
url='http://hierarchicalmatrices.readthedocs.io/en/latest/index.html',
download_url='https://github.com/maekke97/HierarchicalMatrices',
Expand Down
4 changes: 2 additions & 2 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.9.1'
version = u'0.9.2'
# The full version, including alpha/beta/rc tags.
release = u'0.9.1'
release = u'0.9.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 038bb81

Please sign in to comment.