Skip to content

Commit 45dfe62

Browse files
authored
Merge pull request #2332 from SciML/myb/1.9
Drop Julia 1.6
2 parents 397f518 + c27fb33 commit 45dfe62

File tree

4 files changed

+11
-14
lines changed

4 files changed

+11
-14
lines changed

.github/workflows/Downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
julia-version: [1,1.6]
25+
julia-version: [1]
2626
os: [ubuntu-latest]
2727
package:
2828
- {user: SciML, repo: SciMLBase.jl, group: Downstream}

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
- All
2727
version:
2828
- '1'
29-
- '1.6'
3029
steps:
3130
- uses: actions/checkout@v4
3231
- uses: julia-actions/setup-julia@v1

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Symbolics = "5.0"
9898
URIs = "1"
9999
UnPack = "0.1, 1.0"
100100
Unitful = "1.1"
101-
julia = "1.6"
101+
julia = "1.9"
102102

103103
[extras]
104104
AmplNLWriter = "7c4d4715-977e-5154-bfe0-e096adeac482"

test/structural_transformation/tearing.jl

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,15 @@ io = IOBuffer()
2727
show(io, MIME"text/plain"(), state.structure)
2828
prt = String(take!(io))
2929

30-
if VERSION >= v"1.6"
31-
@test occursin("Incidence matrix:", prt)
32-
@test occursin("×", prt)
33-
@test occursin("", prt)
34-
35-
buff = IOBuffer()
36-
io = IOContext(buff, :mtk_limit => false)
37-
show(io, MIME"text/plain"(), state.structure)
38-
prt = String(take!(buff))
39-
@test occursin("SystemStructure", prt)
40-
end
30+
@test occursin("Incidence matrix:", prt)
31+
@test occursin("×", prt)
32+
@test occursin("", prt)
33+
34+
buff = IOBuffer()
35+
io = IOContext(buff, :mtk_limit => false)
36+
show(io, MIME"text/plain"(), state.structure)
37+
prt = String(take!(buff))
38+
@test occursin("SystemStructure", prt)
4139

4240
# u1 = f1(u5)
4341
# u2 = f2(u1)

0 commit comments

Comments
 (0)