Skip to content

Commit c84e100

Browse files
authored
Fix compat (#30)
1 parent 59dde8b commit c84e100

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,13 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
version:
22-
- '1.6'
2322
- '1'
2423
- 'nightly'
2524
os:
2625
- ubuntu-latest
2726
arch:
2827
- x64
2928
include:
30-
- version: '1.6'
31-
allow_failure: false
3229
- version: '1'
3330
allow_failure: false
3431
- version: 'nightly'

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = ["JuliaGraphs contributors"]
44
version = "0.1.0-DEV"
55

66
[compat]
7-
julia = "1.6"
7+
julia = "1.10"
88

99
[extras]
1010
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

test/runtests.jl

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,14 @@ DocMeta.setdocmeta!(GraphsBase, :DocTestSetup, :(using GraphsBase); recursive=tr
99

1010
@testset verbose = true "GraphsBase.jl" begin
1111
@testset "Code quality (Aqua.jl)" begin
12-
Aqua.test_all(GraphsBase)
12+
Aqua.test_all(GraphsBase; deps_compat=(; check_extras=false,))
1313
end
1414
@testset "Formatting (JuliaFormatter.jl)" begin
1515
@test format(GraphsBase; verbose=false, overwrite=false)
1616
end
17-
@testset "Doctests (Documenter.jl)" begin
18-
doctest(GraphsBase)
19-
end
17+
doctest(GraphsBase)
2018
@testset "Static checking (JET.jl)" begin
21-
if VERSION >= v"1.9"
22-
JET.test_package(GraphsBase; target_modules=(GraphsBase,))
23-
end
19+
JET.test_package(GraphsBase; target_modules=(GraphsBase,))
2420
end
2521
# Put the actual tests here
2622
end

0 commit comments

Comments
 (0)