From d6b486fcc3486bde9032b2d7f2b0cdcaa8f300f3 Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Fri, 20 Oct 2023 06:35:01 +0000 Subject: [PATCH 1/5] CompatHelper: bump compat for ContinuumArrays to 0.16, (keep existing compat) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 1fabdbc..e0cd47c 100644 --- a/Project.toml +++ b/Project.toml @@ -22,7 +22,7 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" ArnoldiMethod = "0.2" BandedMatrices = "0.16,0.17" BlockBandedMatrices = "0.11, 0.12" -ContinuumArrays = "0.10, 0.11, 0.12" +ContinuumArrays = "0.10, 0.11, 0.12, 0.16" FastGaussQuadrature = "0.4, 0.5" FillArrays = "0.12,0.13, 1" Formatting = "0.4" From fa47bf3c0b48965c69c2b2582245790648c57c21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefanos=20Carlstr=C3=B6m?= Date: Fri, 20 Oct 2023 08:50:30 +0200 Subject: [PATCH 2/5] Fixed broken pretty-printing test --- test/fedvr/basics.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/fedvr/basics.jl b/test/fedvr/basics.jl index 4c55542..df2e48a 100644 --- a/test/fedvr/basics.jl +++ b/test/fedvr/basics.jl @@ -45,9 +45,9 @@ end @testset "Pretty printing" begin B = FEDVR(range(0,stop=20,length=71), 10) C = FEDVR(range(0,stop=20,length=71), 10, t₀=10.0, ϕ=π/3) - @test occursin("FEDVR{Float64} basis with 70 elements on 0.0..20.0", string(B)) + @test occursin("FEDVR{Float64} basis with 70 elements on $(axes(B,1).domain)", string(B)) Ts = string(ComplexF64) - @test occursin("FEDVR{$(Ts)} basis with 70 elements on 0.0..20.0 with ECS @ 60.00° starting at 10.00", string(C)) + @test occursin("FEDVR{$(Ts)} basis with 70 elements on $(axes(C,1).domain) with ECS @ 60.00° starting at 10.00", string(C)) end @testset "Element access" begin From dfa4edcabdf5889074d23f9986761d6c511412f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefanos=20Carlstr=C3=B6m?= Date: Fri, 20 Oct 2023 08:51:57 +0200 Subject: [PATCH 3/5] Bumped compat bounds --- Project.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index e0cd47c..eaffe67 100644 --- a/Project.toml +++ b/Project.toml @@ -20,10 +20,10 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" [compat] ArnoldiMethod = "0.2" -BandedMatrices = "0.16,0.17" +BandedMatrices = "0.16,0.17, 1" BlockBandedMatrices = "0.11, 0.12" ContinuumArrays = "0.10, 0.11, 0.12, 0.16" -FastGaussQuadrature = "0.4, 0.5" +FastGaussQuadrature = "0.4, 0.5, 1" FillArrays = "0.12,0.13, 1" Formatting = "0.4" IntervalSets = "0.5.1,0.6,0.7" @@ -31,7 +31,7 @@ LazyArrays = "0.22, 1" OffsetArrays = "1.1" PrettyTables = "2" ProgressMeter = "1.5" -QuasiArrays = "0.9" +QuasiArrays = "0.9, 0.11" RecipesBase = "1.0" RollingFunctions = "0.6, 0.7" UnicodePlots = "3" From 2b14e48eff6ff2bac28b753b04be6fc4e1b83440 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefanos=20Carlstr=C3=B6m?= Date: Fri, 20 Oct 2023 08:52:13 +0200 Subject: [PATCH 4/5] Bumped version --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index eaffe67..350d4b9 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "CompactBases" uuid = "2c0377a8-7469-4ebd-be0f-82e501f20078" authors = ["Stefanos Carlström "] -version = "0.3.14" +version = "0.3.15" [deps] BandedMatrices = "aae01518-5342-5314-be14-df237901396f" From a1b977f53c059bc94469edd6a3d6ca9c9f08e2d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 09:41:29 +0000 Subject: [PATCH 5/5] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 5c874b0..ad64278 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -30,7 +30,7 @@ jobs: - os: windows-latest version: '1.6' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1 with: version: ${{ matrix.version }} @@ -48,7 +48,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1 with: version: '1' @@ -66,7 +66,7 @@ jobs: name: Doctests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1 with: version: '1'