From 150334b0d7317ad38c5abc95ac9207d20ab5dddf Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Tue, 3 Sep 2024 23:00:13 -0500 Subject: [PATCH 01/62] relax compat on Julia --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index c9a0e967..cd1f2268 100644 --- a/Project.toml +++ b/Project.toml @@ -46,4 +46,4 @@ StaticArrays = "1" SummationByPartsOperators = "0.5" Triangulate = "2" WriteVTK = "1" -julia = "1.10" +julia = "1.9" From d2b6b46c5732fb64ccfa648a221caa00e1a4b3c7 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Tue, 3 Sep 2024 23:30:21 -0500 Subject: [PATCH 02/62] relax compat further --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index cd1f2268..03bb17b4 100644 --- a/Project.toml +++ b/Project.toml @@ -46,4 +46,4 @@ StaticArrays = "1" SummationByPartsOperators = "0.5" Triangulate = "2" WriteVTK = "1" -julia = "1.9" +julia = "1.7" From cdb389d0c2224f5e27fd9ae6caacc82b042fc3dd Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Tue, 3 Sep 2024 23:43:33 -0500 Subject: [PATCH 03/62] add Downgrade.yml --- .github/workflows/Downgrade.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/Downgrade.yml diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml new file mode 100644 index 00000000..01ff8cad --- /dev/null +++ b/.github/workflows/Downgrade.yml @@ -0,0 +1,29 @@ +name: Downgrade +on: + pull_request: + branches: + - master + paths-ignore: + - 'docs/**' + push: + branches: + - master + paths-ignore: + - 'docs/**' +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + version: ['1'] + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v1 + with: + version: ${{ matrix.version }} + - uses: cjdoris/julia-downgrade-compat-action@v1 +# if: ${{ matrix.version == '1.6' }} + with: + skip: Pkg,TOML + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 \ No newline at end of file From ec3b3329ec4b5b25ae0c96203f1cbd6e9de3951b Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Tue, 3 Sep 2024 23:44:28 -0500 Subject: [PATCH 04/62] fix master -> main --- .github/workflows/Downgrade.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml index 01ff8cad..372644a0 100644 --- a/.github/workflows/Downgrade.yml +++ b/.github/workflows/Downgrade.yml @@ -2,12 +2,12 @@ name: Downgrade on: pull_request: branches: - - master + - main paths-ignore: - 'docs/**' push: branches: - - master + - main paths-ignore: - 'docs/**' jobs: From b6b836ed5fc75f74352a2c61f4560dccc78ff16a Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Tue, 3 Sep 2024 23:48:08 -0500 Subject: [PATCH 05/62] bump Julia compat to 1.9 for stdlib --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 03bb17b4..cd1f2268 100644 --- a/Project.toml +++ b/Project.toml @@ -46,4 +46,4 @@ StaticArrays = "1" SummationByPartsOperators = "0.5" Triangulate = "2" WriteVTK = "1" -julia = "1.7" +julia = "1.9" From e95c2c7cbcd43be5e81352edb32e5933a9415f19 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Tue, 3 Sep 2024 23:49:22 -0500 Subject: [PATCH 06/62] revert Julia compat, bump SparseArrays compat --- Project.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index cd1f2268..01c8f1aa 100644 --- a/Project.toml +++ b/Project.toml @@ -41,9 +41,9 @@ RecipesBase = "1" RecursiveArrayTools = "2, 3" Reexport = "1" Setfield = "1" -SparseArrays = "1" +SparseArrays = "1.10" StaticArrays = "1" SummationByPartsOperators = "0.5" Triangulate = "2" WriteVTK = "1" -julia = "1.9" +julia = "1.7" From b4c584c29f12c832047f76ab9c4e4ad718c6d53c Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Tue, 3 Sep 2024 23:53:44 -0500 Subject: [PATCH 07/62] bump RecursiveArrayTools compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 01c8f1aa..233e4698 100644 --- a/Project.toml +++ b/Project.toml @@ -38,7 +38,7 @@ NodesAndModes = "1" PathIntersections = "0.1, 0.2" Plots = "1" RecipesBase = "1" -RecursiveArrayTools = "2, 3" +RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1" SparseArrays = "1.10" From 8cc28543ce3867a044416f501e60c291b0bfbaf3 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Tue, 3 Sep 2024 23:58:04 -0500 Subject: [PATCH 08/62] bump --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 233e4698..6b3dfaa4 100644 --- a/Project.toml +++ b/Project.toml @@ -38,7 +38,7 @@ NodesAndModes = "1" PathIntersections = "0.1, 0.2" Plots = "1" RecipesBase = "1" -RecursiveArrayTools = "2.38, 3" +RecursiveArrayTools = "^2.38.10, 3" Reexport = "1" Setfield = "1" SparseArrays = "1.10" From 9c1ec0eb9a74376fbd5c36e4aae64b95b80cf18f Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 00:04:59 -0500 Subject: [PATCH 09/62] bump triangulate compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 6b3dfaa4..512c5367 100644 --- a/Project.toml +++ b/Project.toml @@ -44,6 +44,6 @@ Setfield = "1" SparseArrays = "1.10" StaticArrays = "1" SummationByPartsOperators = "0.5" -Triangulate = "2" +Triangulate = "1, 2" WriteVTK = "1" julia = "1.7" From 09e569cc2922bd69cb974fffe5fd835326cb7fb3 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 00:05:47 -0500 Subject: [PATCH 10/62] again --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 512c5367..4777372b 100644 --- a/Project.toml +++ b/Project.toml @@ -44,6 +44,6 @@ Setfield = "1" SparseArrays = "1.10" StaticArrays = "1" SummationByPartsOperators = "0.5" -Triangulate = "1, 2" +Triangulate = "0.8, 1, 2" WriteVTK = "1" julia = "1.7" From ae91206ab0335f54ae8430076ca236ecdb3ced88 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 00:07:18 -0500 Subject: [PATCH 11/62] bump triangulate compat again (0.8 does not exist) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 4777372b..a8e94a99 100644 --- a/Project.toml +++ b/Project.toml @@ -44,6 +44,6 @@ Setfield = "1" SparseArrays = "1.10" StaticArrays = "1" SummationByPartsOperators = "0.5" -Triangulate = "0.8, 1, 2" +Triangulate = "0.5, 1, 2" WriteVTK = "1" julia = "1.7" From 33d96212ebb4e43184677343ce6f98cad8cec05e Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 00:20:18 -0500 Subject: [PATCH 12/62] test bump RecursiveArrayTools to 3 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index a8e94a99..a7a065ba 100644 --- a/Project.toml +++ b/Project.toml @@ -38,7 +38,7 @@ NodesAndModes = "1" PathIntersections = "0.1, 0.2" Plots = "1" RecipesBase = "1" -RecursiveArrayTools = "^2.38.10, 3" +RecursiveArrayTools = "3" Reexport = "1" Setfield = "1" SparseArrays = "1.10" From 6682ed00e5e11d78aad19641e55fcc1c7fa3de30 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 00:22:38 -0500 Subject: [PATCH 13/62] test one more RecurArrTools --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index a7a065ba..a1e74c4b 100644 --- a/Project.toml +++ b/Project.toml @@ -38,7 +38,7 @@ NodesAndModes = "1" PathIntersections = "0.1, 0.2" Plots = "1" RecipesBase = "1" -RecursiveArrayTools = "3" +RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1" SparseArrays = "1.10" From 1060c6bb8f48313d726967897a763dcc1a5601f5 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 00:25:30 -0500 Subject: [PATCH 14/62] bump Triangulate compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index a1e74c4b..57955494 100644 --- a/Project.toml +++ b/Project.toml @@ -44,6 +44,6 @@ Setfield = "1" SparseArrays = "1.10" StaticArrays = "1" SummationByPartsOperators = "0.5" -Triangulate = "0.5, 1, 2" +Triangulate = "1, 2" WriteVTK = "1" julia = "1.7" From 4d2f8ef4e7277bb616589670ea8313f13f8b1e2a Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 00:39:55 -0500 Subject: [PATCH 15/62] try adding DocStringExtensions as an explicit dep --- Project.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Project.toml b/Project.toml index 57955494..37a5c251 100644 --- a/Project.toml +++ b/Project.toml @@ -5,6 +5,7 @@ version = "1.1.5" [deps] ConstructionBase = "187b0558-2788-49d3-abe0-74a17ed4e7c9" +DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b" HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f" Kronecker = "2c470bb0-bcc8-11e8-3dad-c9649493f05e" @@ -31,6 +32,7 @@ TriangulatePlotsExt = "Plots" [compat] ConstructionBase = "1" +DocStringExtensions = "0.9" FillArrays = "0.13, 1" HDF5 = "0.16, 0.17" Kronecker = "0.5" From 60d5fb2ad7cf895b9e696212b64b7bd38f7ac90c Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 01:13:51 -0500 Subject: [PATCH 16/62] Revert "try adding DocStringExtensions as an explicit dep" This reverts commit 4d2f8ef4e7277bb616589670ea8313f13f8b1e2a. --- Project.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Project.toml b/Project.toml index 37a5c251..57955494 100644 --- a/Project.toml +++ b/Project.toml @@ -5,7 +5,6 @@ version = "1.1.5" [deps] ConstructionBase = "187b0558-2788-49d3-abe0-74a17ed4e7c9" -DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b" HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f" Kronecker = "2c470bb0-bcc8-11e8-3dad-c9649493f05e" @@ -32,7 +31,6 @@ TriangulatePlotsExt = "Plots" [compat] ConstructionBase = "1" -DocStringExtensions = "0.9" FillArrays = "0.13, 1" HDF5 = "0.16, 0.17" Kronecker = "0.5" From 5beb1d05ae88e262c715d5bc32abf7cfd11ceba3 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 01:19:06 -0500 Subject: [PATCH 17/62] remove Triangulate v1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 57955494..233e4698 100644 --- a/Project.toml +++ b/Project.toml @@ -44,6 +44,6 @@ Setfield = "1" SparseArrays = "1.10" StaticArrays = "1" SummationByPartsOperators = "0.5" -Triangulate = "1, 2" +Triangulate = "2" WriteVTK = "1" julia = "1.7" From c332506a87422f0e1c1690ed70faa0a949566b70 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 01:38:24 -0500 Subject: [PATCH 18/62] bump lower Triangulate boudn --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 233e4698..7c8f9c4c 100644 --- a/Project.toml +++ b/Project.toml @@ -44,6 +44,6 @@ Setfield = "1" SparseArrays = "1.10" StaticArrays = "1" SummationByPartsOperators = "0.5" -Triangulate = "2" +Triangulate = "2.2" WriteVTK = "1" julia = "1.7" From 28d7baeb2086d09a6eee9b59bcc31748b180eb68 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 01:56:27 -0500 Subject: [PATCH 19/62] bump lower Plots compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 7c8f9c4c..a37f8e72 100644 --- a/Project.toml +++ b/Project.toml @@ -36,7 +36,7 @@ HDF5 = "0.16, 0.17" Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" -Plots = "1" +Plots = "1.10.1" RecipesBase = "1" RecursiveArrayTools = "2.38, 3" Reexport = "1" From a5e3a78b031204429e24904e64d114a0117b88d0 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 01:56:27 -0500 Subject: [PATCH 20/62] bump lower Plots compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 7c8f9c4c..21d0d6c8 100644 --- a/Project.toml +++ b/Project.toml @@ -36,7 +36,7 @@ HDF5 = "0.16, 0.17" Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" -Plots = "1" +Plots = "1.25.11" RecipesBase = "1" RecursiveArrayTools = "2.38, 3" Reexport = "1" From 8efb3cde9e65e3ab81b1ff00b6e9ffbd2cb367e8 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 13:57:51 -0500 Subject: [PATCH 21/62] bump HDF5 compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 41a7fc48..a42f936f 100644 --- a/Project.toml +++ b/Project.toml @@ -32,7 +32,7 @@ TriangulatePlotsExt = "Plots" [compat] ConstructionBase = "1" FillArrays = "0.13, 1" -HDF5 = "0.16, 0.17" +HDF5 = "0.17" Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" From a48fea7e17b6c28f6ee8614cf514c50465ae4267 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 4 Sep 2024 14:00:51 -0500 Subject: [PATCH 22/62] Revert "bump HDF5 compat" This reverts commit 8efb3cde9e65e3ab81b1ff00b6e9ffbd2cb367e8. --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index a42f936f..41a7fc48 100644 --- a/Project.toml +++ b/Project.toml @@ -32,7 +32,7 @@ TriangulatePlotsExt = "Plots" [compat] ConstructionBase = "1" FillArrays = "0.13, 1" -HDF5 = "0.17" +HDF5 = "0.16, 0.17" Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" From 4d4d57753db5c693c76fbe322f017c146b0efc06 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 08:58:55 -0500 Subject: [PATCH 23/62] try bumping patch versions of HDF5, RecipesBase, Setfield, StaticArrays --- Project.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Project.toml b/Project.toml index 41a7fc48..869f91f8 100644 --- a/Project.toml +++ b/Project.toml @@ -32,17 +32,17 @@ TriangulatePlotsExt = "Plots" [compat] ConstructionBase = "1" FillArrays = "0.13, 1" -HDF5 = "0.16, 0.17" +HDF5 = "0.17" Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" Plots = "1.25.11" -RecipesBase = "1.2" +RecipesBase = "1.3" RecursiveArrayTools = "2.38, 3" Reexport = "1" -Setfield = "1" +Setfield = "1.1" SparseArrays = "1.10" -StaticArrays = "1" +StaticArrays = "1.9" SummationByPartsOperators = "0.5" Triangulate = "2.2" WriteVTK = "1" From b762ffa68ac446808f754defbad74e9103a857ed Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 09:07:55 -0500 Subject: [PATCH 24/62] bump ConstructionBase compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 869f91f8..ff8399a0 100644 --- a/Project.toml +++ b/Project.toml @@ -30,7 +30,7 @@ StartUpDGSummationByPartsOperatorsExt = "SummationByPartsOperators" TriangulatePlotsExt = "Plots" [compat] -ConstructionBase = "1" +ConstructionBase = "1.5" FillArrays = "0.13, 1" HDF5 = "0.17" Kronecker = "0.5" From b57e645ff98ab792019db44e83492d0d92b41168 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 09:14:55 -0500 Subject: [PATCH 25/62] bump WriteVTK compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index ff8399a0..297c2688 100644 --- a/Project.toml +++ b/Project.toml @@ -45,5 +45,5 @@ SparseArrays = "1.10" StaticArrays = "1.9" SummationByPartsOperators = "0.5" Triangulate = "2.2" -WriteVTK = "1" +WriteVTK = "1.19" julia = "1.7" From f812aa18f459992216b6abee7c4f1ad3f4082180 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 09:30:40 -0500 Subject: [PATCH 26/62] bump SBP ops --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 297c2688..9557f5ef 100644 --- a/Project.toml +++ b/Project.toml @@ -43,7 +43,7 @@ Reexport = "1" Setfield = "1.1" SparseArrays = "1.10" StaticArrays = "1.9" -SummationByPartsOperators = "0.5" +SummationByPartsOperators = "0.5.42" Triangulate = "2.2" WriteVTK = "1.19" julia = "1.7" From f6e0940bdf38c9ab3abc24b64a46c8a92fbb63d4 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 12:56:07 -0500 Subject: [PATCH 27/62] revert HDF5 compat bump --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 9557f5ef..cb142c6d 100644 --- a/Project.toml +++ b/Project.toml @@ -32,7 +32,7 @@ TriangulatePlotsExt = "Plots" [compat] ConstructionBase = "1.5" FillArrays = "0.13, 1" -HDF5 = "0.17" +HDF5 = "0.16, 0.17" Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" From 3cc69e5f0be3b389d0c6b95a5d0455510e63983c Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 12:57:16 -0500 Subject: [PATCH 28/62] Revert "revert HDF5 compat bump" This reverts commit f6e0940bdf38c9ab3abc24b64a46c8a92fbb63d4. --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index cb142c6d..9557f5ef 100644 --- a/Project.toml +++ b/Project.toml @@ -32,7 +32,7 @@ TriangulatePlotsExt = "Plots" [compat] ConstructionBase = "1.5" FillArrays = "0.13, 1" -HDF5 = "0.16, 0.17" +HDF5 = "0.17" Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" From 0123a82287f6b64ba6ff4591015d4529222622c3 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 12:58:00 -0500 Subject: [PATCH 29/62] revert ConstructionBase compat bump --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 9557f5ef..a3d89c25 100644 --- a/Project.toml +++ b/Project.toml @@ -30,7 +30,7 @@ StartUpDGSummationByPartsOperatorsExt = "SummationByPartsOperators" TriangulatePlotsExt = "Plots" [compat] -ConstructionBase = "1.5" +ConstructionBase = "1.1" FillArrays = "0.13, 1" HDF5 = "0.17" Kronecker = "0.5" From 38fe1b7fd9c1336d4472d1cac39bdd1bfdd104df Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:04:59 -0500 Subject: [PATCH 30/62] further bump of ConstructionBase compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index a3d89c25..ee96d76e 100644 --- a/Project.toml +++ b/Project.toml @@ -30,7 +30,7 @@ StartUpDGSummationByPartsOperatorsExt = "SummationByPartsOperators" TriangulatePlotsExt = "Plots" [compat] -ConstructionBase = "1.1" +ConstructionBase = "1" FillArrays = "0.13, 1" HDF5 = "0.17" Kronecker = "0.5" From 88cea6033253d87f46c40e3567666cc6241ff466 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:07:45 -0500 Subject: [PATCH 31/62] Revert "further bump of ConstructionBase compat" This reverts commit 38fe1b7fd9c1336d4472d1cac39bdd1bfdd104df. --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index ee96d76e..a3d89c25 100644 --- a/Project.toml +++ b/Project.toml @@ -30,7 +30,7 @@ StartUpDGSummationByPartsOperatorsExt = "SummationByPartsOperators" TriangulatePlotsExt = "Plots" [compat] -ConstructionBase = "1" +ConstructionBase = "1.1" FillArrays = "0.13, 1" HDF5 = "0.17" Kronecker = "0.5" From 59e98415463c493a5a9fc43eb8cb8ac50d20b338 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:10:19 -0500 Subject: [PATCH 32/62] Downgrade Plots compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index a3d89c25..11461583 100644 --- a/Project.toml +++ b/Project.toml @@ -36,7 +36,7 @@ HDF5 = "0.17" Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" -Plots = "1.25.11" +Plots = "1" RecipesBase = "1.3" RecursiveArrayTools = "2.38, 3" Reexport = "1" From 16695b548ab034431f01b2edede2d9eec6ec399d Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:11:40 -0500 Subject: [PATCH 33/62] Revert "Downgrade Plots compat" This reverts commit 59e98415463c493a5a9fc43eb8cb8ac50d20b338. --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 11461583..a3d89c25 100644 --- a/Project.toml +++ b/Project.toml @@ -36,7 +36,7 @@ HDF5 = "0.17" Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" -Plots = "1" +Plots = "1.25.11" RecipesBase = "1.3" RecursiveArrayTools = "2.38, 3" Reexport = "1" From 3f1aed0a55d18c537be944b25e7ecb4b5dd26192 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:20:05 -0500 Subject: [PATCH 34/62] downgrade Plots to 1.10 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index a3d89c25..bb48b19e 100644 --- a/Project.toml +++ b/Project.toml @@ -36,7 +36,7 @@ HDF5 = "0.17" Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" -Plots = "1.25.11" +Plots = "1.10" RecipesBase = "1.3" RecursiveArrayTools = "2.38, 3" Reexport = "1" From d0172946376feaeac4ae143b270b8ea1e009687b Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:26:21 -0500 Subject: [PATCH 35/62] downgrade plots to 1.1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index bb48b19e..40491946 100644 --- a/Project.toml +++ b/Project.toml @@ -36,7 +36,7 @@ HDF5 = "0.17" Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" -Plots = "1.10" +Plots = "1.1" RecipesBase = "1.3" RecursiveArrayTools = "2.38, 3" Reexport = "1" From 3cd8360faa217186e28a3f99c55ab88b2f5a2ecc Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:29:44 -0500 Subject: [PATCH 36/62] keep Plots 1.10 for Reexport compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 40491946..bb48b19e 100644 --- a/Project.toml +++ b/Project.toml @@ -36,7 +36,7 @@ HDF5 = "0.17" Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" -Plots = "1.1" +Plots = "1.10" RecipesBase = "1.3" RecursiveArrayTools = "2.38, 3" Reexport = "1" From 24e4f12634391c247a06ab62ec63eb460336a09d Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:30:16 -0500 Subject: [PATCH 37/62] downgrade RecipesBase compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index bb48b19e..c921f4ad 100644 --- a/Project.toml +++ b/Project.toml @@ -37,7 +37,7 @@ Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" Plots = "1.10" -RecipesBase = "1.3" +RecipesBase = "1.1" RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1.1" From eff28fea63f42b3cd33c29a7ff46b2841d7ab87f Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:38:49 -0500 Subject: [PATCH 38/62] downgrade RecipesBase to 1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index c921f4ad..996a44fe 100644 --- a/Project.toml +++ b/Project.toml @@ -37,7 +37,7 @@ Kronecker = "0.5" NodesAndModes = "1" PathIntersections = "0.1, 0.2" Plots = "1.10" -RecipesBase = "1.1" +RecipesBase = "1" RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1.1" From dbf992235505fd30a7e60e96eacb106eafbc38e5 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:45:28 -0500 Subject: [PATCH 39/62] downgrade RecursiveArrayTools to 2, 3 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 996a44fe..3c72a81c 100644 --- a/Project.toml +++ b/Project.toml @@ -38,7 +38,7 @@ NodesAndModes = "1" PathIntersections = "0.1, 0.2" Plots = "1.10" RecipesBase = "1" -RecursiveArrayTools = "2.38, 3" +RecursiveArrayTools = "2, 3" Reexport = "1" Setfield = "1.1" SparseArrays = "1.10" From a87447f2094bdfb601dcd27113f6c32243488a65 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:48:23 -0500 Subject: [PATCH 40/62] bump RecursiveArrayTools lower compat to 2.8 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 3c72a81c..cc791bf9 100644 --- a/Project.toml +++ b/Project.toml @@ -38,7 +38,7 @@ NodesAndModes = "1" PathIntersections = "0.1, 0.2" Plots = "1.10" RecipesBase = "1" -RecursiveArrayTools = "2, 3" +RecursiveArrayTools = "2.8, 3" Reexport = "1" Setfield = "1.1" SparseArrays = "1.10" From 311d5106b2e227b922e3b9caa4f77d51088f9c12 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:51:21 -0500 Subject: [PATCH 41/62] bump RecursiveArrayTools lower compat to 2.11 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index cc791bf9..b6a3e407 100644 --- a/Project.toml +++ b/Project.toml @@ -38,7 +38,7 @@ NodesAndModes = "1" PathIntersections = "0.1, 0.2" Plots = "1.10" RecipesBase = "1" -RecursiveArrayTools = "2.8, 3" +RecursiveArrayTools = "2.11, 3" Reexport = "1" Setfield = "1.1" SparseArrays = "1.10" From 1b0d1b95fb998ef895846b451bfa3ecd4453cf46 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:53:51 -0500 Subject: [PATCH 42/62] bump RecurArrTools lower compat to 2.30 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index b6a3e407..2b5b7a6b 100644 --- a/Project.toml +++ b/Project.toml @@ -38,7 +38,7 @@ NodesAndModes = "1" PathIntersections = "0.1, 0.2" Plots = "1.10" RecipesBase = "1" -RecursiveArrayTools = "2.11, 3" +RecursiveArrayTools = "2.30, 3" Reexport = "1" Setfield = "1.1" SparseArrays = "1.10" From f06fdccba7462045ce4019398285c12a76262845 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:55:30 -0500 Subject: [PATCH 43/62] restore lower RecurArrTool compat to 2.38 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 2b5b7a6b..996a44fe 100644 --- a/Project.toml +++ b/Project.toml @@ -38,7 +38,7 @@ NodesAndModes = "1" PathIntersections = "0.1, 0.2" Plots = "1.10" RecipesBase = "1" -RecursiveArrayTools = "2.30, 3" +RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1.1" SparseArrays = "1.10" From 44f28f0a8b58eeed1d338369c967bb6b06e252ce Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 13:56:04 -0500 Subject: [PATCH 44/62] downgrade Setfield lower compat to 1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 996a44fe..794db579 100644 --- a/Project.toml +++ b/Project.toml @@ -40,7 +40,7 @@ Plots = "1.10" RecipesBase = "1" RecursiveArrayTools = "2.38, 3" Reexport = "1" -Setfield = "1.1" +Setfield = "1" SparseArrays = "1.10" StaticArrays = "1.9" SummationByPartsOperators = "0.5.42" From a484c6bb2af9a9d9e31ba4c107999c119c14b44a Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 14:03:22 -0500 Subject: [PATCH 45/62] downgrade SparseArrays lower compat to 1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 794db579..23ff2654 100644 --- a/Project.toml +++ b/Project.toml @@ -41,7 +41,7 @@ RecipesBase = "1" RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1" -SparseArrays = "1.10" +SparseArrays = "1" StaticArrays = "1.9" SummationByPartsOperators = "0.5.42" Triangulate = "2.2" From b1078ca1d4ddd576052a9dc71319ec5710b71d7d Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 14:07:11 -0500 Subject: [PATCH 46/62] Revert "downgrade SparseArrays lower compat to 1" This reverts commit a484c6bb2af9a9d9e31ba4c107999c119c14b44a. --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 23ff2654..794db579 100644 --- a/Project.toml +++ b/Project.toml @@ -41,7 +41,7 @@ RecipesBase = "1" RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1" -SparseArrays = "1" +SparseArrays = "1.10" StaticArrays = "1.9" SummationByPartsOperators = "0.5.42" Triangulate = "2.2" From 699398771205fac6dd877d8d62d244623b20293b Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 14:07:34 -0500 Subject: [PATCH 47/62] downgrade StaticArrays lower compat 1.9 -> 1.5 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 794db579..35d249d5 100644 --- a/Project.toml +++ b/Project.toml @@ -42,7 +42,7 @@ RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1" SparseArrays = "1.10" -StaticArrays = "1.9" +StaticArrays = "1.5" SummationByPartsOperators = "0.5.42" Triangulate = "2.2" WriteVTK = "1.19" From 611452f74086888ae1869e904ab9150337a62a22 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 14:10:18 -0500 Subject: [PATCH 48/62] downgrade StaticArrays lower compat 1.5 -> 1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 35d249d5..f32ab2fb 100644 --- a/Project.toml +++ b/Project.toml @@ -42,7 +42,7 @@ RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1" SparseArrays = "1.10" -StaticArrays = "1.5" +StaticArrays = "1" SummationByPartsOperators = "0.5.42" Triangulate = "2.2" WriteVTK = "1.19" From 9e397131aae596f0905a746bb759683bd9e1f821 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 14:14:13 -0500 Subject: [PATCH 49/62] bump StaticArrays compat 1.5 -> 1 -> 1.2 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index f32ab2fb..9bc4900c 100644 --- a/Project.toml +++ b/Project.toml @@ -42,7 +42,7 @@ RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1" SparseArrays = "1.10" -StaticArrays = "1" +StaticArrays = "1.2" SummationByPartsOperators = "0.5.42" Triangulate = "2.2" WriteVTK = "1.19" From 553c84f748639e9aaad379ae2bc8bc8fae0bc86b Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 14:28:48 -0500 Subject: [PATCH 50/62] bump StaticArrays lower compat to 1.3 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 9bc4900c..7445832a 100644 --- a/Project.toml +++ b/Project.toml @@ -42,7 +42,7 @@ RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1" SparseArrays = "1.10" -StaticArrays = "1.2" +StaticArrays = "1.3" SummationByPartsOperators = "0.5.42" Triangulate = "2.2" WriteVTK = "1.19" From 866d55cdb47fa6f98426838363b715b7bfb75969 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 14:54:25 -0500 Subject: [PATCH 51/62] bump StaticArrays lower compat to 1.4 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 7445832a..c6858698 100644 --- a/Project.toml +++ b/Project.toml @@ -42,7 +42,7 @@ RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1" SparseArrays = "1.10" -StaticArrays = "1.3" +StaticArrays = "1.4" SummationByPartsOperators = "0.5.42" Triangulate = "2.2" WriteVTK = "1.19" From 6ad69bb0bef59615bf6e09dfc6d907ca725e55d1 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 14:58:17 -0500 Subject: [PATCH 52/62] bump StaticArrays lower compat to 1.5 again --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index c6858698..35d249d5 100644 --- a/Project.toml +++ b/Project.toml @@ -42,7 +42,7 @@ RecursiveArrayTools = "2.38, 3" Reexport = "1" Setfield = "1" SparseArrays = "1.10" -StaticArrays = "1.4" +StaticArrays = "1.5" SummationByPartsOperators = "0.5.42" Triangulate = "2.2" WriteVTK = "1.19" From 844fc2c8898094ddb5e815a86259c85d50c03964 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 15:01:21 -0500 Subject: [PATCH 53/62] downgrade SBPOps lower compat to 0.5.20 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 35d249d5..d06a9644 100644 --- a/Project.toml +++ b/Project.toml @@ -43,7 +43,7 @@ Reexport = "1" Setfield = "1" SparseArrays = "1.10" StaticArrays = "1.5" -SummationByPartsOperators = "0.5.42" +SummationByPartsOperators = "0.5.20" Triangulate = "2.2" WriteVTK = "1.19" julia = "1.7" From 79a198790a087e0ff78d9af42d98ea891c665c86 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 15:02:52 -0500 Subject: [PATCH 54/62] bump SBPOps compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index d06a9644..5056bebd 100644 --- a/Project.toml +++ b/Project.toml @@ -43,7 +43,7 @@ Reexport = "1" Setfield = "1" SparseArrays = "1.10" StaticArrays = "1.5" -SummationByPartsOperators = "0.5.20" +SummationByPartsOperators = "0.5.30" Triangulate = "2.2" WriteVTK = "1.19" julia = "1.7" From 0f25bfecf45b47cd31ae40e8828f74e20cf6c34a Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 15:51:56 -0500 Subject: [PATCH 55/62] downgrade SBPOps compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 5056bebd..2584c948 100644 --- a/Project.toml +++ b/Project.toml @@ -43,7 +43,7 @@ Reexport = "1" Setfield = "1" SparseArrays = "1.10" StaticArrays = "1.5" -SummationByPartsOperators = "0.5.30" +SummationByPartsOperators = "0.5.25" Triangulate = "2.2" WriteVTK = "1.19" julia = "1.7" From 0145838b8f41820335ddbff3f778c1b4a2b97f12 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 15:54:59 -0500 Subject: [PATCH 56/62] bump SBPops compat to 0.5.28 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 2584c948..f7a084ce 100644 --- a/Project.toml +++ b/Project.toml @@ -43,7 +43,7 @@ Reexport = "1" Setfield = "1" SparseArrays = "1.10" StaticArrays = "1.5" -SummationByPartsOperators = "0.5.25" +SummationByPartsOperators = "0.5.28" Triangulate = "2.2" WriteVTK = "1.19" julia = "1.7" From dd70965c77341ce9167bd116bd41f19fc3942883 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 16:01:35 -0500 Subject: [PATCH 57/62] bump SBPOpsCompat to 0.5.29 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index f7a084ce..894a5447 100644 --- a/Project.toml +++ b/Project.toml @@ -43,7 +43,7 @@ Reexport = "1" Setfield = "1" SparseArrays = "1.10" StaticArrays = "1.5" -SummationByPartsOperators = "0.5.28" +SummationByPartsOperators = "0.5.29" Triangulate = "2.2" WriteVTK = "1.19" julia = "1.7" From 40fc0e776f231019d6553ca6c30984077bdd682e Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 16:30:52 -0500 Subject: [PATCH 58/62] downgrade Triangulate lower compat to 2 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 894a5447..e02e4159 100644 --- a/Project.toml +++ b/Project.toml @@ -44,6 +44,6 @@ Setfield = "1" SparseArrays = "1.10" StaticArrays = "1.5" SummationByPartsOperators = "0.5.29" -Triangulate = "2.2" +Triangulate = "2" WriteVTK = "1.19" julia = "1.7" From 953f64e277bccb6b3e45d57db9613618aa385c06 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 16:31:40 -0500 Subject: [PATCH 59/62] bump Triangulate lower compat to 2.1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index e02e4159..1e454bc3 100644 --- a/Project.toml +++ b/Project.toml @@ -44,6 +44,6 @@ Setfield = "1" SparseArrays = "1.10" StaticArrays = "1.5" SummationByPartsOperators = "0.5.29" -Triangulate = "2" +Triangulate = "2.1" WriteVTK = "1.19" julia = "1.7" From bd859d6b9e62d572c6382d75c97c797e3a1c1c1e Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 16:32:39 -0500 Subject: [PATCH 60/62] Revert "downgrade Triangulate lower compat to 2" This reverts commit 40fc0e776f231019d6553ca6c30984077bdd682e. --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 1e454bc3..894a5447 100644 --- a/Project.toml +++ b/Project.toml @@ -44,6 +44,6 @@ Setfield = "1" SparseArrays = "1.10" StaticArrays = "1.5" SummationByPartsOperators = "0.5.29" -Triangulate = "2.1" +Triangulate = "2.2" WriteVTK = "1.19" julia = "1.7" From bb0a0147bed868c16f457ecaa99ca9cffa2c5acb Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 16:33:16 -0500 Subject: [PATCH 61/62] downgrade WriteVTK lower bound to 1.10 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 894a5447..40bd6067 100644 --- a/Project.toml +++ b/Project.toml @@ -45,5 +45,5 @@ SparseArrays = "1.10" StaticArrays = "1.5" SummationByPartsOperators = "0.5.29" Triangulate = "2.2" -WriteVTK = "1.19" +WriteVTK = "1.10" julia = "1.7" From b2e10e68f39c1213bd13fb9a0c774eda136c844b Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 5 Sep 2024 16:36:09 -0500 Subject: [PATCH 62/62] bump WriteVTK lower compat bound to 1.14.1 FillArrays compatibility --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 40bd6067..a2907c3e 100644 --- a/Project.toml +++ b/Project.toml @@ -45,5 +45,5 @@ SparseArrays = "1.10" StaticArrays = "1.5" SummationByPartsOperators = "0.5.29" Triangulate = "2.2" -WriteVTK = "1.10" +WriteVTK = "1.14.1" julia = "1.7"