Skip to content

Commit

Permalink
v 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asistradition committed May 8, 2021
1 parent 77a854a commit 6a3aa25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages

DISTNAME = 'sparse_dot_mkl'
VERSION = '0.7.0'
VERSION = '0.7.1'
DESCRIPTION = "Intel MKL wrapper for sparse matrix multiplication"
MAINTAINER = 'Chris Jackson'
MAINTAINER_EMAIL = '[email protected]'
Expand Down
2 changes: 1 addition & 1 deletion sparse_dot_mkl/tests/test_sparse_dense.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,4 +306,4 @@ def setUp(self):
self.mat2 = MATRIX_2.copy()[:, 0]

self.mat1_d = np.asarray(MATRIX_1.A, order="F")
self.mat2_d = np.asarray(MATRIX_2.A, order="F")[:, 0].reshape(-1, 1)
self.mat2_d = np.asarray(MATRIX_2.A, order="F")[:, 0].reshape(-1, 1)

0 comments on commit 6a3aa25

Please sign in to comment.