Fix Reexport dependency conflict in downgrade CI #658
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Fixes dependency resolution error in downgrade CI tests by updating Reexport version constraints.
Problem
The downgrade CI runs with
ALLOW_RERESOLVE: false
, which prevents Julia's package resolver from automatically updating dependencies. This caused the following error:The issue was that:
Reexport = "1"
orReexport = "1.2"
which gets pinned to exactly v1.2.0Solution
Updated all Reexport version constraints to
"1.2.2"
across all 8 Project.toml files:This ensures compatibility with OrdinaryDiffEqTsit5's requirements when running the downgrade CI tests.
Test plan
🤖 Generated with Claude Code