Skip to content

Commit

Permalink
update graphblas version
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknw committed Dec 19, 2024
1 parent 6d25f4c commit 7c3451f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion GB_VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.3.1
9.4.2
1 change: 1 addition & 0 deletions suitesparse_graphblas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ def libget(name):
lib.GrB_NOT_IMPLEMENTED: ex.NotImplementedException,
# GxB Errors
lib.GxB_EXHAUSTED: StopIteration,
lib.GxB_JIT_ERROR: ex.JitError,
}
GrB_SUCCESS = lib.GrB_SUCCESS
GrB_NO_VALUE = lib.GrB_NO_VALUE
Expand Down
4 changes: 4 additions & 0 deletions suitesparse_graphblas/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,7 @@ class Panic(GraphBLASException):

class NotImplementedException(GraphBLASException):
pass


class JitError(GraphBLASException):
pass

0 comments on commit 7c3451f

Please sign in to comment.