Skip to content

Commit 2a2a4b3

Browse files
github-actions[bot]CompatHelper Juliajagotdlfivefifty
authored
CompatHelper: bump compat for QuasiArrays to 0.9, ContinuumArrays to 0.10
* CompatHelper: bump compat for QuasiArrays to 0.9, (keep existing compat) * Bump ContinuumArrays.jl * Fix tests * Update CI.yml * Updated CI.yml for documentation * Bump version Co-authored-by: CompatHelper Julia <[email protected]> Co-authored-by: Stefanos Carlström <[email protected]> Co-authored-by: Sheehan Olver <[email protected]> Co-authored-by: Stefanos Carlström <[email protected]>
1 parent fcb6a6b commit 2a2a4b3

File tree

4 files changed

+11
-15
lines changed

4 files changed

+11
-15
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
version:
13-
- '1.5'
1413
- '1.6'
1514
- '~1.7.0-0'
1615
- 'nightly'
@@ -20,9 +19,6 @@ jobs:
2019
- windows-latest
2120
arch:
2221
- x64
23-
exclude:
24-
- os: windows-latest
25-
version: '1.5'
2622
steps:
2723
- uses: actions/checkout@v2
2824
- uses: julia-actions/setup-julia@v1
@@ -52,7 +48,7 @@ jobs:
5248
- uses: actions/checkout@v2
5349
- uses: julia-actions/setup-julia@v1
5450
with:
55-
version: '1.5'
51+
version: '1.6'
5652
- run: |
5753
julia --project=docs -e '
5854
using Pkg
@@ -72,7 +68,7 @@ jobs:
7268
- uses: actions/checkout@v2
7369
- uses: julia-actions/setup-julia@v1
7470
with:
75-
version: '1.5'
71+
version: '1.6'
7672
- run: |
7773
julia --project=docs -e '
7874
using Pkg

Project.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "CompactBases"
22
uuid = "2c0377a8-7469-4ebd-be0f-82e501f20078"
33
authors = ["Stefanos Carlström <[email protected]>"]
4-
version = "0.3.5"
4+
version = "0.3.6"
55

66
[deps]
77
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
@@ -20,17 +20,17 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
2020

2121
[compat]
2222
BandedMatrices = "0.16"
23-
BlockBandedMatrices = "0.10, 0.11"
24-
ContinuumArrays = "0.6.4,0.7,0.8,0.9"
23+
BlockBandedMatrices = "0.11"
24+
ContinuumArrays = "0.10"
2525
FastGaussQuadrature = "0.4"
26-
FillArrays = "0.11,0.12"
26+
FillArrays = "0.12"
2727
Formatting = "0.4"
2828
IntervalSets = "0.5.1"
29-
LazyArrays = "0.20,0.21, 0.22"
29+
LazyArrays = "0.22"
3030
OffsetArrays = "1.1"
31-
QuasiArrays = "0.4.9,0.5,0.6,0.7, 0.8"
31+
QuasiArrays = "0.9"
3232
RecipesBase = "1.0"
33-
julia = "1.5"
33+
julia = "1.6"
3434

3535
[extras]
3636
ArnoldiMethod = "ec485272-7323-5ecc-a04f-4719b315124d"

src/fedvr_derivatives.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ derop!(A, B::FEDVROrRestricted, n::Integer) =
6363
set_elements!(difffun(B,n), A, B)
6464

6565
ContinuumArrays.MemoryLayout(::Type{<:BasisOrRestricted{<:FEDVR}}) = ContinuumArrays.BasisLayout()
66-
ContinuumArrays.MemoryLayout(::Type{<:AdjointBasisOrRestricted{<:FEDVR}}) = ContinuumArrays.AdjointBasisLayout()
66+
ContinuumArrays.MemoryLayout(::Type{<:AdjointBasisOrRestricted{<:FEDVR}}) = ContinuumArrays.AdjointBasisLayout{ContinuumArrays.BasisLayout}()
6767

6868
@materialize function *(Ac::AdjointBasisOrRestricted{<:FEDVR},
6969
D::Derivative,

src/finite_differences.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ IntervalSets.leftendpoint(B::ImplicitFiniteDifferences) = B.r[1] - local_step(B,
346346
IntervalSets.rightendpoint(B::ImplicitFiniteDifferences) = B.r[end] + local_step(B,length(B.r))
347347

348348
ContinuumArrays.MemoryLayout(::Type{<:BasisOrRestricted{<:ImplicitFiniteDifferences}}) = ContinuumArrays.BasisLayout()
349-
ContinuumArrays.MemoryLayout(::Type{<:AdjointBasisOrRestricted{<:ImplicitFiniteDifferences}}) = ContinuumArrays.AdjointBasisLayout()
349+
ContinuumArrays.MemoryLayout(::Type{<:AdjointBasisOrRestricted{<:ImplicitFiniteDifferences}}) = ContinuumArrays.AdjointBasisLayout{ContinuumArrays.BasisLayout}()
350350

351351
show(io::IO, B::ImplicitFiniteDifferences{T}) where {T} =
352352
write(io, "Implicit finite differences basis {$T} on $(axes(B,1).domain) with $(size(B,2)) points spaced by Δx = $(step(B))")

0 commit comments

Comments
 (0)