From fd5dacb4a9a03b4135ab8707b7f07667dc0dd6ad Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sat, 30 May 2026 21:14:57 -0400 Subject: [PATCH] Re-enable downgrade CI The downgrade workflow was disabled. The julia-actions/julia-downgrade-compat tooling issues that affected SciML monorepos are fixed and released in @v2, and this package builds and passes its test suite against the downgraded (minimal compatible) dependency versions. Re-enable the job and use allow_reresolve so the test environment can resolve transitive/test-only dependencies the downgrade step does not lock. Verified locally on Julia 1.11: downgrade resolve + build + test all pass. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/Downgrade.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml index f28d5d7..b8b8509 100644 --- a/.github/workflows/Downgrade.yml +++ b/.github/workflows/Downgrade.yml @@ -12,7 +12,6 @@ on: - 'docs/**' jobs: test: - if: false # Disabled pending fix - see #208 for tracking re-enablement runs-on: ubuntu-latest strategy: matrix: @@ -32,6 +31,6 @@ jobs: - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 with: - ALLOW_RERESOLVE: false + allow_reresolve: true env: GROUP: ${{ matrix.group }}