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
I just noticed that the current master doesn't work with the julia v0.6 beta (0.6.0-pre.beta.132). I get the following messages when using ASTInterpreter:
WARNING: deprecated syntax "abstract ReplacementLoc" at /home/christoph/.julia/v0.6/ASTInterpreter/src/ASTInterpreter.jl:155.
Use "abstract type ReplacementLoc end" instead.
INFO: Precompiling module ASTInterpreter.
WARNING: deprecated syntax "abstract ReplacementLoc" at /home/christoph/.julia/v0.6/ASTInterpreter/src/ASTInterpreter.jl:155.
Use "abstract type ReplacementLoc end" instead.
ERROR: LoadError: syntax: extra token ".¬" after end of expression
Stacktrace:
[1] include_from_node1(::String) at ./loading.jl:539
[2] include(::String) at ./sysimg.jl:14
[3] anonymous at ./<missing>:2
while loading /home/christoph/.julia/v0.6/ASTInterpreter/src/ASTInterpreter.jl, in expression starting on line 914
ERROR: Failed to precompile ASTInterpreter to /home/christoph/.julia/lib/v0.6/ASTInterpreter.ji.
Stacktrace:
[1] compilecache(::String) at ./loading.jl:673
[2] require(::Symbol) at ./loading.jl:460
The warnings are easy to fix, however I'm puzzled with the Errors. I assume these symbols have been replaced in ASTInterpreter? If so, with what?
The text was updated successfully, but these errors were encountered:
Just a ping that it would be great to get a new version working and tagged.
AbstractTrees < v0.1.0 is not compatible with Julia v0.6
ASTInterpreter requires AbstractTrees between v0.0.4 and v0.1.0
(this limitation isn't in the REQUIRE in the repo, but was added to METADATA)
ASTInterpreter is required by Atom and Gallium
Result: installing Atom forces AbstractTrees to downgrade to 0.0.4, which breaks any packages that depend on it on Julia 0.6. As an example, I use Gumbo.jl to test some of my packages that generate HTML output, but Gumbo depends on AbstractTrees. So I can't have Gumbo and Juno installed at the same time without manually pinning ASTInterpreter to its master.
I just noticed that the current master doesn't work with the julia v0.6 beta (0.6.0-pre.beta.132). I get the following messages when
using ASTInterpreter
:The warnings are easy to fix, however I'm puzzled with the Errors. I assume these symbols have been replaced in ASTInterpreter? If so, with what?
The text was updated successfully, but these errors were encountered: