QA: allow JET 0.11 so QA runs on Julia 1.12#26
Merged
ChrisRackauckas merged 1 commit intoJun 16, 2026
Conversation
The QA group runs on `["lts", "1"]`. On Julia 1.12 the sub-env compat
`JET = "0.9, 0.10"` forces JET v0.10.x, which fails to precompile with
`MethodError: no method matching add_active_gotos!(::BitVector,
::Core.CodeInfo, ::Compiler.CFG, ::Compiler.GenericDomTree{true})` due to
a LoweredCodeUtils signature mismatch against the 1.12 compiler internals.
JET 0.11 is the line that supports Julia 1.12. Widening the compat to
`0.9, 0.10, 0.11` lets the resolver pick a working JET per Julia version
(0.11.x on 1.12, 0.9.x on the 1.10 LTS).
Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem
The
tests / QA (julia 1, ubuntu-latest)check onmainis red. On Julia 1.12.6 the QA sub-env (test/qa/Project.toml) pinsJET = "0.9, 0.10", so the resolver selects JET v0.10.14, which fails to precompile:This is a JET 0.10.x / LoweredCodeUtils signature mismatch against the Julia 1.12 compiler internals. JET 0.11 is the line that supports Julia 1.12.
Fix
Widen the QA sub-env compat to
JET = "0.9, 0.10, 0.11". The resolver then picks a JET that works for each Julia in the QA matrix:"1") → JET 0.11.4"lts") → JET 0.9.18 (JET 0.11 requires julia ≥ 1.12)No test was skipped, disabled, or loosened.
Local verification
Reproduced and verified with
julia +1.12/julia +1.10on the QA sub-env.Before (current
0.9, 0.10), Julia 1.12.6:After (
0.9, 0.10, 0.11):Note
This PR fixes the QA check only. The Documentation build is also red, but for an unrelated, genuine doc-content reason: the
docs/src/neural_ode_training.mdexample doesusing DiffEqFluxandusing DataCollocations, both of which exportcollocate_data, so the unqualified call hitsUndefVarError: collocate_data not defined(binding ambiguity). That is a separate doc fix (qualify the name) and is intentionally not bundled here.Please ignore until reviewed by @ChrisRackauckas.