Fix Julia 1.10 compatibility bounds - #61
Merged
MartinMikkelsen merged 1 commit intoAug 11, 2026
Merged
Conversation
ohno
marked this pull request as ready for review
August 11, 2026 12:11
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #61 +/- ##
=======================================
Coverage 97.42% 97.42%
=======================================
Files 18 18
Lines 3721 3723 +2
=======================================
+ Hits 3625 3627 +2
Misses 96 96 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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.
@MartinMikkelsen I would like to fix this for JuliaFewBody/TwoBody.jl#38.
Summary
This PR restores Julia 1.10 compatibility and adds Julia 1.10 to the CI matrix. No runtime implementation is changed.
Background
This issue was discovered while integrating
TensorTrainNumerics.dmrg_eigsolveinto the QTT solver proposed in JuliaFewBody/TwoBody.jl#38, which addresses JuliaFewBody/TwoBody.jl#26.Although
TensorTrainNumerics.jldeclares Julia 1.10 compatibility, its compatibility bounds required the Julia 1.11 versions of theRandomandTeststandard libraries. Consequently, dependency resolution failed on Julia 1.10 before any package tests could run.After relaxing those bounds, the test environment still could not resolve on Julia 1.10 because the permitted JET versions, 0.11 and 0.12, require newer dependencies. JET 0.9 remains compatible with Julia 1.10.
Changes
RandomandTestcompatibility bounds from 1.11.0 to 1.10.Validation
The changes were tested locally with Julia 1.10.10.
TensorTrainNumericssucceeds.This change should allow downstream packages to support Julia 1.10 consistently with the compatibility declared by
TensorTrainNumerics.jl.This pull request was developed with assistance from Codex using GPT-5.6 Sol with High reasoning effort.