Commit 40a5b20
Fix Vararg syntax error for Julia 1.12 compatibility
Replace @variables ∫(.., ..) with SymbolicUtils.@syms ∫(::Any, ::Any)::Real
The original syntax @variables ∫(.., ..) caused a TypeError in Julia 1.12:
"TypeError: in Tuple, in non-final parameter, expected Type, got Vararg"
This was preventing package registration for v3.2.0. The new syntax uses
SymbolicUtils.@syms which is compatible with Julia 1.12 and correctly
defines the unevaluated integral symbol as a function taking two arguments.
Fixes package loading error at src/methods/risch/frontend.jl:728
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>1 parent 3085081 commit 40a5b20
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
725 | 725 | | |
726 | 726 | | |
727 | 727 | | |
728 | | - | |
| 728 | + | |
729 | 729 | | |
730 | 730 | | |
731 | 731 | | |
| |||
0 commit comments