-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Base.require
leads to ERROR: LoadError: UndefVarError: UUID
not defined in Main
#53381
Comments
Bisect blames #53111 |
The reason is the following: julia> pkgid = Base.PkgId(Base.UUID("89b7a33a-382e-4698-a931-421b088d35a2"), "DummyStorageBackends");
julia> show(pkgid)
Base.PkgId(Base.UUID("89b7a33a-382e-4698-a931-421b088d35a2"), "DummyStorageBackends")
julia> using UUIDs: UUID
# `Base` prefix is gone for `UUID`:
julia> show(pkgid)
Base.PkgId(UUID("89b7a33a-382e-4698-a931-421b088d35a2"), "DummyStorageBackends") This makes Line 2562 in 59102aa
|
tecosaur
pushed a commit
to tecosaur/julia
that referenced
this issue
Mar 4, 2024
…in create_expr_cache (JuliaLang#53387) Fixes JuliaLang#53381
mkitti
pushed a commit
to mkitti/julia
that referenced
this issue
Mar 7, 2024
…in create_expr_cache (JuliaLang#53387) Fixes JuliaLang#53381
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This popped up in DataSets.jl nightly tests, and appears to be some weird regression in
Base.require
. The tarball (mwe.tar.gz) has the MWE environment (which basically consists of a trivial empty package):Works file on 1.10 and earlier. Looking at the PkgEval results for DataSets.jl, it looks like it started failing about 1-2 weeks ago. I'll see if I can bisect it to a commit.
The text was updated successfully, but these errors were encountered: