Skip to content

Commit 19f73ab

Browse files
Fix pivot definition by version
1 parent 175cf1b commit 19f73ab

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
version:
1717
- '1'
1818
- '1.6'
19+
- '1.7'
20+
- '1.8'
1921
steps:
2022
- uses: actions/checkout@v3
2123
- uses: julia-actions/setup-julia@v1

src/ArrayInterface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ Returns the number.
482482
"""
483483
bunchkaufman_instance(a::Any) = bunchkaufman(a, check = false)
484484

485-
@static if VERSION < v"1.7beta"
485+
@static if VERSION < v"1.8beta"
486486
const DEFAULT_CHOLESKY_PIVOT = Val(false)
487487
else
488488
const DEFAULT_CHOLESKY_PIVOT = LinearAlgebra.NoPivot()

0 commit comments

Comments
 (0)