diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d731a5..eb0efad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - Core version: - '1' - - '1.6' + - '1.10' steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1 @@ -38,4 +38,4 @@ jobs: - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v4 with: - file: lcov.info \ No newline at end of file + file: lcov.info diff --git a/Project.toml b/Project.toml index 3798ed2..e7f96b8 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "StaticArrayInterface" uuid = "0d7ed370-da01-4f52-bd93-41d350b8b718" -version = "1.7.0" +version = "1.8.0" [deps] ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9" @@ -8,7 +8,6 @@ Compat = "34da2185-b29b-5c13-b0c7-acf172513d20" IfElse = "615f187c-cbe4-4ef1-ba3b-2fcf58d6d173" LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a" -Requires = "ae029012-a4dd-5104-9daa-d747884805df" Static = "aedffcd0-7271-4cad-89d0-dc628f76c6d3" [weakdeps] @@ -24,9 +23,8 @@ ArrayInterface = "7" Compat = "4" IfElse = "0.1" PrecompileTools = "1" -Requires = "1" Static = "0.8, 1" -julia = "1.6" +julia = "1.10" [extras] OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881" diff --git a/src/StaticArrayInterface.jl b/src/StaticArrayInterface.jl index 7e15cb9..ee96061 100644 --- a/src/StaticArrayInterface.jl +++ b/src/StaticArrayInterface.jl @@ -486,17 +486,6 @@ include("indexing.jl") include("stridelayout.jl") include("broadcast.jl") -@static if !isdefined(Base, :get_extension) - import Requires -end - -@static if !isdefined(Base, :get_extension) - function __init__() - Requires.@require StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" begin include("../ext/StaticArrayInterfaceStaticArraysExt.jl") end - Requires.@require OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881" begin include("../ext/StaticArrayInterfaceOffsetArraysExt.jl") end - end -end - ## Precompilation @setup_workload begin