You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I also verified this error did not depend on Python (3.10 through 3.13 all give the same error).
To quickly verify this:
# 1.10
python -c 'import juliapkg as jp; jp.require_julia("~1.10"); from juliacall import Main as jl; jl.x = 1'# (Exits fine)# 1.11
python -c 'import juliapkg as jp; jp.require_julia("~1.11"); from juliacall import Main as jl; jl.x = 1'# Throws an error
It looks like this syntax is no longer working on Julia 1.11:
On 1.10 of Julia this works, but on 1.11, this raises the following error:
I also verified this error did not depend on Python (3.10 through 3.13 all give the same error).
To quickly verify this:
cc @cjdoris
The text was updated successfully, but these errors were encountered: