You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
While
Base.Docs.doc
(and its aliasBase.doc
) is defined inBase
, all the methods for this function was defined in theREPL
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.
The text was updated successfully, but these errors were encountered: