Skip to content

Commit 3e26737

Browse files
authored
remove explicit test on v1.9 (#464)
* remove explicit test on v1.9 * don't hardcode libblas and liblapack * bump version to v0.8.25
1 parent 8fe4acb commit 3e26737

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: true
3333
matrix:
34-
julia-version: ['1', '1.6', '~1.9.0-0']
34+
julia-version: ['1', '1.6']
3535
os: [ubuntu-latest]
3636
package:
3737
- {repo: ApproxFun.jl, group: JuliaApproximation}

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ApproxFunBase"
22
uuid = "fbd15aa5-315a-5a7d-a8a4-24992e37be05"
3-
version = "0.8.24"
3+
version = "0.8.25"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"

src/LinearAlgebra/blas.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import LinearAlgebra.BLAS: @blasfunc
2-
const libblas = VERSION < v"1.8" ? LinearAlgebra.BLAS.libblas : "libblastrampoline"
3-
const liblapack = VERSION < v"1.8" ? LinearAlgebra.LAPACK.liblapack : "libblastrampoline"
1+
import LinearAlgebra.BLAS: @blasfunc, libblas, liblapack
42

53
# Level 2
64
## mv

0 commit comments

Comments
 (0)