Kristoffer Carlsson

Results 1634 comments of Kristoffer Carlsson

> Specifically, when users of my package run add CoolPackage will Pkg install and/or restrict versions so that all the dependencies in CoolPackage/test and CoolPackage/docs will/can also be satisfied? No,...

CI error in windows seems relevant... ``` SystemError: longpath: The system cannot find the path specified. Stacktrace: [1] windowserror(p::Symbol, code::UInt32; extrainfo::Nothing) @ Base .\error.jl:191 [2] windowserror @ .\error.jl:190 [inlined] [3]...

Can we fix it on this side as well by calling `abspath`?

Imo these should correspond to if the user was in REPL mode or not when the error occurred.

Should that issue be closed and this one opened then?

I think this is just how macros work, they get expanded before any code is executed. So if code in the block defines the macros then expanding the macro itself...

Try again now that https://github.com/JuliaLang/julia/pull/38405 is merged?

If all bugs got milestoned we could never do a release. This doesn't seem to be a regression so it is unlikely that we will hold the 1.3 release for...

Isn't this just a faulty `iterate` definition? It says that `length` should be equal to `size(it.source, 1)` but it returns `nothing` after `size(it.source, 1)-1`. Using something like ```jl function Base.iterate(it::mytbl,...