[Coin-OR] retroactively fix compat to equality bounds #100318
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.
We're currently blocked from updating a bunch of JLL packages because the original build scripts specified
compat="VERSION"
instead ofcompat="=VERSION"
.In theory, this should have been okay because of semver, but in practice, I know that minor changes in the COIN-OR stack can cause issues, and the only right thing to do is lock everything to a particular version. (I always update the entire stack in sequence so we never had parts built at different times, and they all share a common source of recent versions so everything is built in sync.)
This is brittle though, and this PR goes back to add
=
compat bounds.The downside is that I'm not sure how to verify that every version has a feasible set of packages?
I've checked out this branch and tested a few combinations and it all seems to work
But that's not a substitute for rigorous proof.
x-ref: JuliaPackaging/Yggdrasil#8066 (comment)