Kristoffer Carlsson
Kristoffer Carlsson
If a package contains files with the same name only differeing with case, the local hash we compute will be faulty on case insensitive file systems (https://github.com/JuliaLang/Pkg.jl/issues/2272). It's probably best...
Since Stats.j reexport the full API of all its dependencies, any new feature of any dependency warrants a new minor release of Stats.jl. This is likely only manageable if Stats.jl...
From PkgEval (https://s3.amazonaws.com/julialang-reports/nanosoldier/pkgeval/by_hash/c3bb6df_vs_599ecd8/DataStructures.1.6.0-DEV-fe2d71bc7f.build-3d16cc1ee71b7eb9.log). This is running with Julia and LLVM assertions on: ``` ... /home/pkgeval/.julia/packages/DataStructures/5hvIb/test/test_swiss_dict.jl ... Intrinsic name not mangled correctly for type arguments! Should be: llvm.prefetch.p0i8 void (i8*, i32,...
https://github.com/JuliaCollections/DataStructures.jl/pull/759 would be good to have in a release.
As a benchmark suite becomes large the likelihood of accidentally overwriting a previous group increases. It would be good if this would warn or error since it is very likely...
Using something like https://github.com/bicycle1885/CodecZlib.jl the output files can be compressed to ~5% of the current size. It is a pretty lightweight dependency, so perhaps worth thinking about.
Free for all for people to add stuff.
In 1.6.1 the following behavior changed: 1.6.0: ```jl julia> searchsortedfirst(1.0:-0.1:0.1, 0.3) 8 julia> searchsortedfirst(collect(1.0:-0.1:0.1), 0.3) 1 ``` 1.6.1: ```jl julia> searchsortedfirst(1.0:-0.1:0.1, 0.3) 1 julia> searchsortedfirst(collect(1.0:-0.1:0.1), 0.3) 1 ``` This causes...
This came up in PkgEval: ``` Anonymous Functions: Error During Test at /home/pkgeval/.julia/packages/BSON/rOaki/test/runtests.jl:125 Got exception outside of a @test setfield!: const field .names of type TypeName cannot be changed Stacktrace:...
Requires https://github.com/Keno/VT100.jl/pull/19