From 632c0dcacf54640ffe46fe44c53f65a1eaed1be5 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas Date: Sat, 9 Aug 2025 10:45:37 -0400 Subject: [PATCH 1/3] Update compat bounds to exclude releases >1 year old MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates the minimum version bounds in [compat] to exclude package releases older than one year (as of August 2025): - BenchmarkTools: 1 → 1.5 (v1.5.0 from Feb 2024) - Compat: 4 → 4.15 (v4.15.0 from May 2024) - FiniteDifferences: 0.12 → 0.12.32 (v0.12.32 from May 2024) - OffsetArrays: 1 → 1.14 (v1.14.0 from Apr 2024) - StaticArrays: 1 → 1.9.2 (v1.9.2 from Jan 2024) This ensures the package depends only on recent, actively maintained versions of its dependencies. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Project.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Project.toml b/Project.toml index b4528eb2e..b195b65a2 100644 --- a/Project.toml +++ b/Project.toml @@ -8,11 +8,11 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" [compat] -BenchmarkTools = "1" -Compat = "4" -FiniteDifferences = "0.12" -OffsetArrays = "1" -StaticArrays = "1" +BenchmarkTools = "1.5" +Compat = "4.15" +FiniteDifferences = "0.12.32" +OffsetArrays = "1.14" +StaticArrays = "1.9.2" julia = "1.10" [extensions] From 6facda3a01aba5dac5763650fe8350d32029a750 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sat, 9 Aug 2025 10:52:22 -0400 Subject: [PATCH 2/3] Create Downgrade.yml --- .github/workflows/Downgrade.yml | 36 +++++++++++++++++++++++++++++++++ 1 file changed, 36 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 000000000..3eef51293 --- /dev/null +++ b/.github/workflows/Downgrade.yml @@ -0,0 +1,36 @@ +name: Downgrade +on: + pull_request: + branches: + - master + paths-ignore: + - 'docs/**' + push: + branches: + - master + paths-ignore: + - 'docs/**' +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + group: + - Core + downgrade_mode: ['alldeps'] + julia-version: ['1.10'] + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v2 + with: + version: ${{ matrix.julia-version }} + - uses: julia-actions/julia-downgrade-compat@v2 +# if: ${{ matrix.version == '1.6' }} + with: + skip: Pkg,TOML + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 + with: + ALLOW_RERESOLVE: false + env: + GROUP: ${{ matrix.group }} From 1d5c65117d0048cdf86be8a6e8c8865000b749d5 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sat, 9 Aug 2025 12:28:20 -0400 Subject: [PATCH 3/3] Update Downgrade.yml --- .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 3eef51293..87e31e04b 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: