Skip to content

Commit

Permalink
Merge pull request #2332 from SciML/myb/1.9
Browse files Browse the repository at this point in the history
Drop Julia 1.6
  • Loading branch information
YingboMa authored Oct 27, 2023
2 parents 397f518 + c27fb33 commit 45dfe62
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version: [1,1.6]
julia-version: [1]
os: [ubuntu-latest]
package:
- {user: SciML, repo: SciMLBase.jl, group: Downstream}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
- All
version:
- '1'
- '1.6'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Symbolics = "5.0"
URIs = "1"
UnPack = "0.1, 1.0"
Unitful = "1.1"
julia = "1.6"
julia = "1.9"

[extras]
AmplNLWriter = "7c4d4715-977e-5154-bfe0-e096adeac482"
Expand Down
20 changes: 9 additions & 11 deletions test/structural_transformation/tearing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,15 @@ io = IOBuffer()
show(io, MIME"text/plain"(), state.structure)
prt = String(take!(io))

if VERSION >= v"1.6"
@test occursin("Incidence matrix:", prt)
@test occursin("×", prt)
@test occursin("", prt)

buff = IOBuffer()
io = IOContext(buff, :mtk_limit => false)
show(io, MIME"text/plain"(), state.structure)
prt = String(take!(buff))
@test occursin("SystemStructure", prt)
end
@test occursin("Incidence matrix:", prt)
@test occursin("×", prt)
@test occursin("", prt)

buff = IOBuffer()
io = IOContext(buff, :mtk_limit => false)
show(io, MIME"text/plain"(), state.structure)
prt = String(take!(buff))
@test occursin("SystemStructure", prt)

# u1 = f1(u5)
# u2 = f2(u1)
Expand Down

0 comments on commit 45dfe62

Please sign in to comment.