Morten Piibeleht
Morten Piibeleht
Assignment in tuples and arrays ``` julia> x=65; [x,x|=0x20] 2-element Vector{Int64}: 97 97 julia> x=65; (x,x|=0x20) (97, 97) ``` was made a syntax error at one point (in 0.3; see...
@timholy Did you mean like this? I have been running Revise with essentially this patch (sans the `Base.isinteractive` check) for quite a while now and everything has been working fine....
When loading a Julia script as follows: ```sh julia -i -e 'using Revise; includet("script.jl")' ``` Revise will not update the function definitions etc. afterwards. The original version of the script...
I'm getting a `PosDefException: matrix is not positive definite; Cholesky factorization failed` when doing a simple `lm(@formula(y ~ x), df)` when the range of `x` and `y` values is tiny...
Allows at-ref links of the form ```markdown [the function `g`](@ref MyPackage.g) [something-something](@ref "Section On Something") ``` which were previously not allowed. Previously you were only allowed to link either to...
Apparently Base is waiting on us to update here: https://github.com/JuliaLang/julia/blob/35ac6e1823a2145fdbd8273d62cc19f10bde3543/stdlib/REPL/src/REPL.jl#L125-L126 https://github.com/JuliaDocs/Documenter.jl/blob/ebe2f97acc9e37c87f7f44772ebf64492c5b0b21/src/Expanders.jl#L714-L716 https://github.com/JuliaDocs/Documenter.jl/blob/ebe2f97acc9e37c87f7f44772ebf64492c5b0b21/src/DocTests.jl#L239-L241 X-ref: https://github.com/JuliaDocs/Documenter.jl/pull/1232
This replaces the `Markdown2` module with [MarkdownAST](https://github.com/JuliaDocs/MarkdownAST.jl) as the representation of the Markdown documents as AST (in doctests). It adds MarkdownAST and AbstractTrees as a dependency here (the latter for...
When we construct the HTTPS URLs for deployment, we usually include the password (e.g. `GITHUB_TOKEN`) in the URL, which ends up in some Git commands etc., and could potentially be...
We still use the system `git` on Mac to work around the linking problems. Setting `GIT_TEMPLATE_DIR` (which Git.jl does) is necessary to make sure that our `git init` and `git...
We don't allow e.g. at-example blocks in docstrings (because they have to be evaluated), but this might not be obvious to the user. We could print a warning (or even...