Skip to content

Commit a905a88

Browse files
authored
Support Julia 1.6 (#203)
1 parent 17fd002 commit a905a88

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
1717
BufferedStreams = "1.1"
1818
EnumX = "1"
1919
TranscodingStreams = "0.9"
20-
julia = "1.7"
20+
julia = "1.6"
2121

2222
[extras]
2323
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

test/runtests.jl

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,13 @@ end
1111

1212
include("unittests.jl")
1313

14-
@testset "JET" begin
15-
include("jet_test_utils.jl")
16-
is_ci() || jet_test_package(ProtoBuf)
17-
# jet_test_file("unittests.jl", ignored_modules=(JET.AnyFrameModule(Test),))
18-
include("test_perf.jl")
14+
if Base.VERSION > v"1.7.0"
15+
@testset "JET" begin
16+
include("jet_test_utils.jl")
17+
is_ci() || jet_test_package(ProtoBuf)
18+
# jet_test_file("unittests.jl", ignored_modules=(JET.AnyFrameModule(Test),))
19+
include("test_perf.jl")
20+
end
1921
end
2022

2123
@testset "Aqua" begin

0 commit comments

Comments
 (0)