Christopher Rowley
Christopher Rowley
Bug fixed - new release coming out shortly.
Yeah that could be nice.
This looks cool thanks! However I don't think integration tests are suitable for running on every commit in regular CI. Instead I think it would make sense to have a...
Yeah a weekly cron job would also be fine.
I'd be OK with adding an unconditional `Pkg.registry.update()` in the right place. I thought Julia always updated the registries the first time you `Pkg.add` anything though??
Actually this would be a change to juliapkg so no worries there. It doesn't sound like that would fix things anyway, if the registry does update. You can roll back...
Thanks for the report. I suspect the issue is that some state is being saved in the sysimage, i.e. `__init__` sets some variables somewhere, and these values are what are...
See also https://juliapy.github.io/PythonCall.jl/stable/juliacall-reference/#juliacall.convert, which allows you to convert the object Python-side before passing it into the Julia function.
Thinking more hard about the default conversion behaviour of containers is on the roadmap for PythonCall/JuliaCall v1.0. The original intent was to use wrapper types for speed and mutability, but...
`@pyexec` always runs in a local scope, but you can write to global scope as usual by adding `global dustmaps, config` to the top of your example code.