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
As of updating to last night's nightly from 2020 Dec 10's build (I skipped all the builds in between), Revise fails (on multiple, seemingly unrelated files; all files that I've tried). I have been updating packages in the meantime, but it's plausible I haven't updated in two weeks, so it could've been a Revise update. I get one of two errors:
┌ Error: Failed to revise /home/graham/.julia/dev/AxisIndices/src/abstractarray.jl
│ exception =
│ UndefVarError: _apply_latest not defined
│ Stacktrace:
│ [1] getproperty(x::Module, f::Symbol)
│ @ Base Base.jl:26
│ [2] top-level scope
│ @ ~/.julia/dev/AxisIndices/src/abstractarray.jl:2
│ Revise evaluation error at /home/graham/.julia/dev/AxisIndices/src/abstractarray.jl:2
│
└ @ Revise ~/.julia/packages/Revise/34vmN/src/packagedef.jl:699
It's maybe worth noting that both of these errors were in response to my putting an @show x line inside a function, or removing said line (the code loads and runs fine in either case with a REPL restart)
Since all this happens in the background, I'm not really sure how to debug this, but I'll try to create a MWE with a dummy package or something and then see if I can't narrow down what update triggered this (though I won't be able to test julia builds between Dec 10 and Jan 8 since I didn't download them -- but I can at least say whether or not the current Revise version works on the Dec 10 build)
The text was updated successfully, but these errors were encountered:
grahamas
changed the title
Revise fails?
Revise fails on nightly?
Jan 8, 2021
It's surely the vararg transition: JuliaLang/julia#38136. You can see from the growing number of references at the end of that PR that there are many packages affected.
I don't have time to fix this right now, but everything should work on Julia 1.6, if you can use that.
As of updating to last night's nightly from 2020 Dec 10's build (I skipped all the builds in between), Revise fails (on multiple, seemingly unrelated files; all files that I've tried). I have been updating packages in the meantime, but it's plausible I haven't updated in two weeks, so it could've been a Revise update. I get one of two errors:
or
It's maybe worth noting that both of these errors were in response to my putting an
@show x
line inside a function, or removing said line (the code loads and runs fine in either case with a REPL restart)Since all this happens in the background, I'm not really sure how to debug this, but I'll try to create a MWE with a dummy package or something and then see if I can't narrow down what update triggered this (though I won't be able to test julia builds between Dec 10 and Jan 8 since I didn't download them -- but I can at least say whether or not the current Revise version works on the Dec 10 build)
The text was updated successfully, but these errors were encountered: