I get a segfault when I run this code: ```python import suitesparse_graphblas as ssgb ssgb.initialize() s = ssgb.ffi.new("GrB_Scalar*") assert ssgb.lib.GrB_Scalar_new(s, ssgb.lib.GxB_FC64) == 0 assert ssgb.lib.GxB_Scalar_setElement_FC64(s[0], 1j) == 0 # <-- segfault here ``` Any thoughts? I guess we should try running this in C.