Skip to content

Commit 85405a6

Browse files
authored
Merge pull request #142 from JuliaReach/schillic/parser
Do not run parser tests in v1.12.4
2 parents ac04736 + 5eba6a5 commit 85405a6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ DocMeta.setdocmeta!(SpaceExParser, :DocTestSetup,
55

66
bib = CitationBibliography(joinpath(@__DIR__, "src", "refs.bib"); style=:alpha)
77

8-
# Julia parser is broken for `'` in v1.12.0 - v1.12.3
9-
doctest = v"1.12.0" <= VERSION <= v"1.12.3" ? false : true
8+
# Julia parser is broken for `'` in v1.12.0 - v1.12.4
9+
doctest = v"1.12.0" <= VERSION <= v"1.12.4" ? false : true
1010

1111
makedocs(; sitename="SpaceExParser.jl",
1212
modules=[SpaceExParser],

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Test, SpaceExParser, HybridSystems, MathematicalSystems
22

33
include("unit_parse.jl")
4-
@static if VERSION < v"1.12.0" || VERSION > v"1.12.3"
5-
# Julia parser is broken for `'` in v1.12.0 - v1.12.3
4+
@static if VERSION < v"1.12.0" || VERSION > v"1.12.4"
5+
# Julia parser is broken for `'` in v1.12.0 - v1.12.4
66
include("unit_examples.jl")
77
include("unit_affine.jl")
88
end

0 commit comments

Comments
 (0)