-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Open
Labels
Description
I don't think this particular warning is user-facing:
┌ SparseArrays
│ WARNING: Constructor for type "Matrix" was extended in `CHOLMOD` without explicit qualification or import.
│ NOTE: Assumed "Matrix" refers to `Base.Matrix`. This behavior is deprecated and may differ in future versions.`
│ NOTE: This behavior may have differed in Julia versions prior to 1.12.
│ Hint: If you intended to create a new generic function of the same name, use `function Matrix end`.
│ Hint: To silence the warning, qualify `Matrix` as `Base.Matrix` in the method signature or explicitly `import Base: Matrix`.
│ WARNING: Constructor for type "Vector" was extended in `CHOLMOD` without explicit qualification or import.
│ NOTE: Assumed "Vector" refers to `Base.Vector`. This behavior is deprecated and may differ in future versions.`
│ NOTE: This behavior may have differed in Julia versions prior to 1.12.
│ Hint: If you intended to create a new generic function of the same name, use `function Vector end`.
│ Hint: To silence the warning, qualify `Vector` as `Base.Vector` in the method signature or explicitly `import Base: Vector`.
└
but it doesn't inspire confidence that we've updated SparseArrays to handle the bindings ages properly.
Probably just missing a version bump?