diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b5e28ce..be40676 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,7 +19,6 @@ jobs: fail-fast: false matrix: version: - - '1.6' - '1' - 'nightly' os: @@ -27,8 +26,6 @@ jobs: arch: - x64 include: - - version: '1.6' - allow_failure: false - version: '1' allow_failure: false - version: 'nightly' diff --git a/Project.toml b/Project.toml index fec7d53..eb32327 100644 --- a/Project.toml +++ b/Project.toml @@ -4,7 +4,7 @@ authors = ["JuliaGraphs contributors"] version = "0.1.0-DEV" [compat] -julia = "1.6" +julia = "1.10" [extras] Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" diff --git a/test/runtests.jl b/test/runtests.jl index 8b9306f..ecd1973 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -9,18 +9,14 @@ DocMeta.setdocmeta!(GraphsBase, :DocTestSetup, :(using GraphsBase); recursive=tr @testset verbose = true "GraphsBase.jl" begin @testset "Code quality (Aqua.jl)" begin - Aqua.test_all(GraphsBase) + Aqua.test_all(GraphsBase; deps_compat=(; check_extras=false,)) end @testset "Formatting (JuliaFormatter.jl)" begin @test format(GraphsBase; verbose=false, overwrite=false) end - @testset "Doctests (Documenter.jl)" begin - doctest(GraphsBase) - end + doctest(GraphsBase) @testset "Static checking (JET.jl)" begin - if VERSION >= v"1.9" - JET.test_package(GraphsBase; target_modules=(GraphsBase,)) - end + JET.test_package(GraphsBase; target_modules=(GraphsBase,)) end # Put the actual tests here end