-
Notifications
You must be signed in to change notification settings - Fork 28
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
Does not work on Julia 0.7 #45
Comments
Hi @MikeInnes , this is not fixed yet but I also can't follow what you posted. It is totally cryptic for me, since I don't really know how the source works. |
I can confirm that this is not related to i changed my code to:
and still doesn't work. Could it be an issue with the UUID I am using? |
I could not figure it out either. |
Update: apparently This is on |
begin
blocks on Julia 0.7
Changed the title to reflect what is actually happening |
I tried this at the time of opening #44, so it may not be correct anymore, but when I did an MWE with |
MWE here. |
After updating to 0.5.1 (after Merging Tim Holy's PR) I tried again, using the new syntax. It does not work, because it cannot find the modules
Notice that The way I do it in my package is:
@timholy you may be interested as well. |
An extra error is the very fact that it tries to precompile
|
See #48 (comment) |
Update, after version
|
I get identical error even if I put This is what I have at the end of the
|
Also doesn't work here on my end. In IterableTables.jl I have: __precompile__()
module IterableTables
using Requires
function __init__()
@require DataFrames="a93c6f00-e57d-5684-b7b6-d8193f3e46c0" include("integrations/dataframes.jl")
end
end # module And then in import DataFrames And then I get this:
|
@davidanthoff as of the recent release 0.5.2, the Getting the equivalent of cc: @MikeInnes @Datseris Edit: to clarify, the |
Hi @RalphAS , thanks for letting us know. I confirm that what you suggested does indeed work!!!!!!!!!!!!!! However..... for me it was really Is it impossible to recover the old behavior, where we could just do |
Unless the Julia developers are willing to change some of the loading functions (and that seems very unwise at this point in the release cycle), ISTM that |
@tpapp already mentioned it in #44 , but a dedicated issue may be better.
This currently does not work on 0.7:
does not actually load the code when
using PyPlot
.(I am not on any master branch, just the default version I got from
pkg add Requires
)The text was updated successfully, but these errors were encountered: