diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 253bcb7..d9b5903 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,10 @@ version: 2 updates: - - package-ecosystem: github-actions - directory: / + - package-ecosystem: "github-actions" + directory: "/" schedule: - interval: daily + interval: "daily" + - package-ecosystem: "julia" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml deleted file mode 100644 index d94b38d..0000000 --- a/.github/workflows/CompatHelper.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: CompatHelper -on: - schedule: - - cron: 0 0 * * * - workflow_dispatch: -jobs: - CompatHelper: - runs-on: ubuntu-latest - steps: - - name: "Add the General registry via Git" - run: | - import Pkg - ENV["JULIA_PKG_SERVER"] = "" - Pkg.Registry.add("General") - shell: julia --color=yes {0} - - name: "Install CompatHelper" - run: | - import Pkg - name = "CompatHelper" - uuid = "aa819f21-2bde-4658-8897-bab36330d9b7" - version = "3" - Pkg.add(; name, uuid, version) - shell: julia --color=yes {0} - - name: "Run CompatHelper" - run: | - import CompatHelper - CompatHelper.main() - shell: julia --color=yes {0} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }} - # COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }} diff --git a/Project.toml b/Project.toml index dbf3286..6edec0d 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "ExtendableSparse" uuid = "95c220a8-a1cf-11e9-0c77-dbfce5f500b3" -version = "2.0.0" +version = "2.0.1" authors = ["Juergen Fuhrmann ", "Daniel Runge"] [deps] diff --git a/test/alltests.jl b/test/alltests.jl index c57225f..3a784c8 100644 --- a/test/alltests.jl +++ b/test/alltests.jl @@ -20,7 +20,9 @@ end @testset "ExplicitImports" begin @test ExplicitImports.check_no_implicit_imports(ExtendableSparse) === nothing @test ExplicitImports.check_all_explicit_imports_via_owners(ExtendableSparse) === nothing - @test ExplicitImports.check_all_explicit_imports_are_public(ExtendableSparse, ignore = (:AbstractSparseMatrixCSC, :getcolptr)) === nothing + @static if VERSION >= v"1.11.0" + @test ExplicitImports.check_all_explicit_imports_are_public(ExtendableSparse, ignore = (:AbstractSparseMatrixCSC, :getcolptr)) === nothing + end @test ExplicitImports.check_no_stale_explicit_imports(ExtendableSparse) === nothing @test ExplicitImports.check_all_qualified_accesses_via_owners(ExtendableSparse) === nothing @test ExplicitImports.check_all_qualified_accesses_are_public(