Skip to content

Commit 1883f0d

Browse files
committed
Move suitesparse/graphblas -> suitesparse_graphblas to avoid potential name conflicts
1 parent fc07b6d commit 1883f0d

File tree

10 files changed

+3
-4
lines changed

10 files changed

+3
-4
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
description='SuiteSparse:GraphBLAS Python bindings.',
77
packages=find_packages(),
88
author='Michel Pelletier, James Kitchen, Erik Welch',
9-
cffi_modules=["suitesparse/graphblas/build.py:ffibuilder"],
9+
cffi_modules=["suitesparse_graphblas/build.py:ffibuilder"],
1010
install_requires=["cffi>=1.0.0"],
1111
setup_requires=["cffi>=1.0.0", "pytest-runner"],
1212
tests_require=["pytest"],

suitesparse/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.
File renamed without changes.

suitesparse/graphblas/build.py renamed to suitesparse_graphblas/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
source = f.read()
1212

1313
ffibuilder.set_source(
14-
"suitesparse.graphblas._graphblas",
14+
"suitesparse_graphblas._graphblas",
1515
source,
1616
libraries=["graphblas"],
1717
include_dirs=[os.path.join(sys.prefix, "include")],
File renamed without changes.

tests/test_package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from suitesparse.graphblas import lib, ffi
1+
from suitesparse_graphblas import lib, ffi
22

33
def test_matrix_existence():
44
assert hasattr(lib, "GrB_Matrix_new")

0 commit comments

Comments
 (0)