Skip to content
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.Docs.doc not available during pre-compilation on julia master #3276

Closed
yuyichao opened this issue Oct 4, 2023 · 0 comments
Closed

Base.Docs.doc not available during pre-compilation on julia master #3276

yuyichao opened this issue Oct 4, 2023 · 0 comments
Labels

Comments

@yuyichao
Copy link

yuyichao commented Oct 4, 2023

While Base.Docs.doc (and its alias Base.doc) is defined in Base, all the methods for this function was defined in the REPL stdlib. Because of this, there has always been a hidden/undetected dependency on REPL (from essentially all the packages in this repo).

This implicit dependency break now on julia master after the REPL stdlib got moved out of sysimg (JuliaLang/julia#51399) and importing these packages fail with method error because of this.

It feels a bit stupid to have to use REPL for this but as it stands (and since this has always been how it works) the easiest fix should be to add this REPL dependency explicitly. It seems that adding this dependency (and then import this) in MakieCore should work for now.

@yuyichao yuyichao added the bug label Oct 4, 2023
SimonDanisch added a commit that referenced this issue Oct 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant