Skip to content

Commit

Permalink
compatibility updates
Browse files Browse the repository at this point in the history
  • Loading branch information
RalphAS committed Dec 13, 2024
1 parent d474010 commit a16169a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6'
- 'lts'
- '1'
- 'nightly'
os:
Expand All @@ -35,7 +35,7 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
files: lcov.info
docs:
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PeriodicSchurDecompositions"
uuid = "e5aedecb-f6c0-4c91-b6ff-fbae4296f459"
authors = ["Ralph A. Smith and contributors"]
version = "0.1.5"
version = "0.1.6"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand All @@ -10,7 +10,7 @@ MatrixFactorizations = "a3b82374-2e81-5b9e-98ce-41277c0e4c87"
ArnoldiMethod = "ec485272-7323-5ecc-a04f-4719b315124d"

[compat]
MatrixFactorizations = "0.8,0.9,1"
MatrixFactorizations = "0.8,0.9,1,2,3"
ArnoldiMethod = "0.1,0.2,0.3,0.4"
julia = "1"

Expand Down
1 change: 1 addition & 0 deletions src/ordschur.jl
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ function _updateλ!(P::PeriodicSchur{T}; strict = true) where {T <: Real}
pairflag = true
else
@error "unexpected subdiag in triang factor $l at $j: $(Al[j+1,j])"
throw(ErrorException("ordschur algorithm bug: please report"))
end
end
end
Expand Down

0 comments on commit a16169a

Please sign in to comment.