-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PyCall 1.92.0 breaks sysimage build? #424
Comments
Thanks for filing the issue. I think JuliaPy/PyCall.jl#841 should fix this. |
@tkf Would it be feasible to allow pulling a Project and/or Manifest, if supplied, into the temporary environment used for creating a sysimage including PyCall, and then |
Yeah, I agree that's a great idea. We'll have it once #422 is merged. |
Thanks @tkf. The custom sysimage builds for me with PyCall 1.92.1 and is usable in the context of the julia module in python. Now I'm back to a set of warnings when building the custom sysimage that look like the following. This is with Julia 1.4.2. Is this considered normal?
|
Hmm... I thought I suppressed these warnings (but I'm not sure). These warnings are expected. I think they should be harmless. |
Thanks @tkf |
I see PyCall 1.92.0 was just released.
Now my system image build, of the pyjulia system image on top of a custom sysimage, is failing. See the output.
I've tried under both Julia 1.4.2 and 1.5.2, Python 3.8.5, Pyjulia 0.5.6.
Actually building on top of the standard julia sysimage breaks also, with the same errors produced, using
build_sysimage("lib/test.so", compiler_env=".")
andbuild_sysimage("lib/test.so")
.When PyCall 1.91.4 was the latest version, that was used, and the build succeeded, although with warnings about "incremental precompilation of this module may be fatally broken" or similar when I was building the pyjulia sysimage on top of the custom sysimage.
Can I control the version of PyCall that is pulled in to make a sysimage? Can I use an existing PyCall installation rather than always downloading a version to the temporary environment?
At worst I can simply not do the pyjulia sysimage build on top of the custom sysimage, since using the custom sysimage directly with e.g.
jl = Julia(sysimage="lib/rr_sys.so")
seems to work, just giving a moderately slower startup time.The text was updated successfully, but these errors were encountered: