Skip to content

Commit

Permalink
Merge pull request #87 from pwschaedler/master
Browse files Browse the repository at this point in the history
  • Loading branch information
RUrlus authored Aug 3, 2023
2 parents 3f40611 + 7739c05 commit d9e1979
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = [
"setuptools>=42",
"wheel",
"cython>=0.29.15,<3.0.0",
"cython>=0.29.15",
"oldest-supported-numpy",
]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.14.5
setuptools>=45.2.0
Cython>=0.29.15,<3.0.0
Cython>=0.29.15
scipy>=1.4.1
2 changes: 1 addition & 1 deletion sparse_dot_topn/sparse_dot_topn.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# distutils: language = c++

from libcpp.vector cimport vector
from array_wrappers cimport ArrayWrapper_int, ArrayWrapper_float, ArrayWrapper_double
from sparse_dot_topn.array_wrappers cimport ArrayWrapper_int, ArrayWrapper_float, ArrayWrapper_double

cimport cython
cimport numpy as np
Expand Down
2 changes: 1 addition & 1 deletion sparse_dot_topn/sparse_dot_topn_threaded.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# distutils: language = c++

from libcpp.vector cimport vector
from array_wrappers cimport ArrayWrapper_int, ArrayWrapper_float, ArrayWrapper_double
from sparse_dot_topn.array_wrappers cimport ArrayWrapper_int, ArrayWrapper_float, ArrayWrapper_double

cimport cython
cimport numpy as np
Expand Down

0 comments on commit d9e1979

Please sign in to comment.