Kristoffer Carlsson

Results 400 issues of Kristoffer Carlsson

The precompile progress bar uses `sprint` to collect all output before printing it to the terminal. But this means that `displaysize` (which the progress meter looks at) will no longer...

In the upcoming 1.6 it is possible to hit the following error (https://s3.amazonaws.com/julialang-reports/nanosoldier/pkgeval/by_hash/9561ec5_vs_aafae8a/PATHSolver.primary.log) ``` PkgEval failed: MethodError: no method matching isless(::Int64, ::Nothing) Closest candidates are: isless(::Any, !Matched::Missing) at missing.jl:88 isless(!Matched::Missing,...

resolver

PackageCompiler kind of needs this since there is otherwise no easy way of collecting artifacts that both include lazy artifacts (which you can do with `select_downloadable_artifacts` directly) and dynamic artifacts...

fixes https://github.com/JuliaLang/Pkg.jl/issues/2664 I think this needs a bit of thinking though. For example, if you use PackageCompiler you want that `ensure_artifact_installed` to download the artifact even if it is overridden....

https://github.com/Roger-luo/GarishPrint.jl fails test on 1.8 (https://github.com/Roger-luo/GarishPrint.jl/blob/master/test/prefs.jl): ```jl Test Failed at /home/kc/PkgEval/dev/GarishPrint.jl/test/prefs.jl:11 Expression: (GarishPrint.ColorPreference()).fieldname === :blue Evaluated: 39 === blue ``` , likely due to https://github.com/JuliaLang/Pkg.jl/pull/2920. Should be investigated.

Testing the package "DisplayAs" gives the error ``` ERROR: can not merge projects Stacktrace: [1] pkgerror(::String) at /workspace/srcdir/usr/share/julia/stdlib/v1.4/Pkg/src/Types.jl:54 [2] (::Pkg.Operations.var"#84#88"{Pkg.Operations.var"#93#94"{Bool,Cmd,Cmd,Nothing,Pkg.Types.Context,Array{String,1},String,Pkg.Types.PackageSpec},Pkg.Types.Context,Pkg.Types.PackageSpec,String,Nothing,String})(::String) at /workspace/srcdir/usr/share/julia/stdlib/v1.4/Pkg/src/Operations.jl:1346 [3] mktempdir(::Pkg.Operations.var"#84#88"{Pkg.Operations.var"#93#94"{Bool,Cmd,Cmd,Nothing,Pkg.Types.Context,Array{String,1},String,Pkg.Types.PackageSpec},Pkg.Types.Context,Pkg.Types.PackageSpec,String,Nothing,String}, ::String; prefix::String) at ./file.jl:673 [4] mktempdir(::Function,...

From the docs > If no positional argument is given, update all packages in the manifest if `mode` is `PKGMODE_MANIFEST` and packages in both manifest and project if `mode` is...

In general, package directories are supposed to be immutable and static. This makes it for example work with PackageCompiler. However, trying to run the tests on a package compiled instance...