Skip to content

Commit d071c14

Browse files
Raise FunctionWrappers compat floor to 1.1.3 to fix downgrade CI
The Downgrade (Core) job was failing with an Unsatisfiable resolution on Julia lts (1.10). When julia-downgrade-compat pins every dep to its lowest allowed version, FunctionWrappers was pinned to 1.0.0 (floor of "1"), but Mooncake (a tested weakdep/extension target) requires FunctionWrappers >= 1.1.3. That made the merged test environment unsatisfiable. Raising the FunctionWrappers compat floor from "1" to "1.1.3" matches the version actually exercised by the test extras and makes the minimum-version resolution satisfiable. Verified locally on Julia 1.10: the merged test project now resolves at minimum versions, the package loads, and basictests pass with FunctionWrappers 1.1.3. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent afd0fe9 commit d071c14

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "FunctionWrappersWrappers"
22
uuid = "77dc65aa-8811-40c2-897b-53d922fa7daf"
33
authors = ["Chris Elrod <elrodc@gmail.com> and contributors"]
4-
version = "1.9.1"
4+
version = "1.9.2"
55

66
[deps]
77
FunctionWrappers = "069b7b12-0de2-55c6-9aab-29f3d0a68a2e"
@@ -20,7 +20,7 @@ FunctionWrappersWrappersMooncakeExt = "Mooncake"
2020
[compat]
2121
Enzyme = "0.13"
2222
EnzymeCore = "0.8"
23-
FunctionWrappers = "1"
23+
FunctionWrappers = "1.1.3"
2424
Mooncake = "0.5"
2525
PrecompileTools = "1"
2626
SafeTestsets = "0.1, 1"

0 commit comments

Comments
 (0)