Skip to content

Julia 1.12 build still warns when building SparseArrays #58816

@topolarity

Description

@topolarity

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    sparseSparse arraysstdlibJulia's standard library

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions