Skip to content

Commit 4f85733

Browse files
committed
Update to graphblas=5.1.10 in CI; update versioneer
1 parent a0eb625 commit 4f85733

File tree

4 files changed

+600
-215
lines changed

4 files changed

+600
-215
lines changed

continuous_integration/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ channels:
33
- conda-forge
44
- defaults
55
dependencies:
6-
- graphblas=5.1.3
6+
- graphblas=5.1.10
77
- cffi
88
- cython
99
- numpy

suitesparse_graphblas/__init__.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
from . import _version
12
from . import exceptions as ex
23
from . import utils
34
from ._graphblas import ffi, lib # noqa
4-
from ._version import get_versions
55

66

77
def is_initialized():
@@ -46,10 +46,6 @@ def initialize(*, blocking=False, memory_manager="numpy"):
4646
raise ValueError(f'memory_manager argument must be "numpy" or "c"; got: {memory_manager!r}')
4747

4848

49-
__version__ = get_versions()["version"]
50-
del get_versions
51-
52-
5349
def libget(name):
5450
"""Helper to get items from GraphBLAS which might be GrB or GxB"""
5551
try:
@@ -170,3 +166,6 @@ def check_status(obj, response_code):
170166
error_func(string, obj)
171167
text = ffi.string(string[0]).decode()
172168
raise _error_code_lookup[response_code](text)
169+
170+
171+
__version__ = _version.get_versions()["version"]

0 commit comments

Comments
 (0)