Alexander Plavin

Results 579 comments of Alexander Plavin

Although, in some scenarios it leads to ``` │ ┌ Error: Error during loading of extension FlexiMapsDictionariesExt of UnionCollections, use `Base.retry_load_extensions()` to retry. │ │ exception = │ │ 1-element...

As this 1.11.1 change turned out to be quite breaking (5 packages even mentioned this issue) – any plans to fix/revert it in 1.11.2? 1.11.1 was a patch version that's...

> We could revert it but it will still have to come for 1.12 Sounds somewhat similar to "it will still have to come for Julia 2.0 anyway, so we...

Recently, I added functions like `rel2data` to MakieExtra to play with, and already found them useful multiple times. For example, ```julia text!(text="my text", @lift (2020, $(rel2data(:y, 0.5)))) ``` puts the...

Julia has a bunch of patterns for handling this already, so one has some freedom to choose "consistent with _what_?" :) For example, `first` and `last` error when there's no...

Idk, should we do anything else here other than proceeding as usual? I did everything I can here – promptly fix the "breaking version" bump by releasing the corresponding 0.6.x,...

Don't think there's any dedicated maintainer for StructArrays, so any members of the org/repo are welcome to proceed however they see fit. I personally don't have experience with nonlinear histories...

Yes, I meant using IntervalBoxes.jl if needed – that is, if IntervalArithmetic.jl support for Vector{Interval} is not enough (https://github.com/JuliaIntervals/IntervalArithmetic.jl/blob/0bb1d9bec5e46b14b9efe121af62f41e24b044a9/NEWS.md?plain=1#L19). > Both IO and AA are optional But they do restrict...

Anyway, turns out I don't need the full RangeEnclosure. Went forward with pasting a short function (adapted from here) into my code: ```julia import IntervalArithmetic as IA function enclose(f, X;...