Skip to content

Commit

Permalink
Fix Julia master (#258)
Browse files Browse the repository at this point in the history
* Fix Julia master

* Test Julia nightlies

* Revert "Test Julia nightlies"

This reverts commit 638692a.
  • Loading branch information
devmotion authored Jun 16, 2022
1 parent 00fe1eb commit 0e4dd06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "BandedMatrices"
uuid = "aae01518-5342-5314-be14-df237901396f"
version = "0.17"
version = "0.17.1"

[deps]
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
Expand Down
5 changes: 3 additions & 2 deletions src/BandedMatrices.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import Base: axes, axes1, getproperty, iterate, tail
import LinearAlgebra: BlasInt, BlasReal, BlasFloat, BlasComplex, axpy!,
checksquare, adjoint, transpose, AdjOrTrans, HermOrSym,
_chol!, rot180, dot
import LinearAlgebra.BLAS: libblas
import LinearAlgebra.LAPACK: liblapack, chkuplo, chktrans
import LinearAlgebra.LAPACK: chkuplo, chktrans
import LinearAlgebra: cholesky, cholesky!, cholcopy, norm, diag, eigvals!, eigvals, eigen!, eigen,
qr, qr!, axpy!, ldiv!, mul!, lu, lu!, ldlt, ldlt!, AbstractTriangular,
chkstride1, kron, lmul!, rmul!, factorize, StructuredMatrixStyle, logabsdet,
Expand Down Expand Up @@ -40,6 +39,8 @@ import ArrayLayouts: MemoryLayout, transposelayout, triangulardata,

import FillArrays: AbstractFill, getindex_value, _broadcasted_zeros, unique_value

const libblas = Base.libblas_name
const liblapack = Base.liblapack_name

export BandedMatrix,
bandrange,
Expand Down

2 comments on commit 0e4dd06

@dlfivefifty
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/62447

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.17.1 -m "<description of version>" 0e4dd0633247cdcb106ed1880e20611de714e48d
git push origin v0.17.1

Please sign in to comment.