Closed devmotion closed 3 years ago
I'd like to help to fix this issue if it is feasible since I'd like to change the API of my package without dropping support for R, but unfortunately I don't know where to look and where to start in JuliaCall.
Thank you very much for the feedback and the use of JuliaCall for your package!
I just made a commit that should fix the problem.
The fix is quite straightforward. The message in the traceback
apply(::Any, ::Any...) at /home/david/R/x86_64-pc-linux-gnu-library/4.0/JuliaCall/julia/setup.jl:233 got unsupported keyword argument "a"
points out to the lines in setup.jl
that the original apply
function does not support keyword arguments.
https://github.com/Non-Contradiction/JuliaCall/blob/6431e0eca7e0c3f8b073d8dce2fcaa1beceddd88/inst/julia/setup.jl#L241-L243
So I just made a little modification to the function to accept keyword arguments.
Great, thanks a lot!
Callables do not support keyword arguments currently: