Support FunctionProperties 1.1 wrapper predicates#1420
Merged
ChrisRackauckas merged 1 commit intoJul 8, 2026
Merged
Conversation
Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
SebastianM-C
reviewed
Jul 9, 2026
| Enzyme = "0.13" | ||
| ForwardDiff = "0.10.36, 1" | ||
| FunctionProperties = "0.1.7" | ||
| FunctionProperties = "0.1.7, 1.1" |
Member
There was a problem hiding this comment.
The compat extension is not correct because islinear was introduce in 1.x in SciML/FunctionProperties.jl#66
The downstream tests involving SciMLSensitivity are broken https://github.com/SciML/SciMLBase.jl/actions/runs/28925741151/job/85813143959#step:11:2154 by this because SciMLSensitivity does not yet allow FunctionProperties v1
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.
This PR should be ignored until reviewed by @ChrisRackauckas.
This supports the FunctionProperties 1.1 compat bump from #1418 by extending the SciMLBase weak extension to forward the new public FunctionProperties predicates through
AbstractSciMLFunctionwrappers.Changes:
FunctionProperties = "0.1.7, 1.1"FunctionProperties.islinearandFunctionProperties.isautonomousthroughAbstractSciMLFunction.fLocal verification:
timeout 3600 ~/.juliaup/bin/julia +1.10 --project=. -e 'using Pkg; Pkg.test(; test_args=["FunctionProperties extension"])'\n - observedFunctionProperties extension | 8 pass\n - observed finalTesting SciMLBase tests passed\n-git diff --check\n-timeout 3600 ~/.juliaup/bin/julia +1.10 --startup-file=no -e 'using Pkg; Pkg.activate(; temp=true); Pkg.add("Runic"); using Runic; exit(Runic.main(["--check", "."]))'\n\nNotes:\n- ThePkg.testinvocation ran the broader SciMLBase suite despite the test argument; I let it complete and it passed.\n- This is intended as the small compatibility follow-up for build(deps): update FunctionProperties requirement from 0.1.7 to 0.1.7, 1.1 in the all-julia-packages group across 1 directory #1418 rather than modifying the Dependabot branch directly.