Michael Ingold

Results 18 comments of Michael Ingold

Looks like both of those errors stem from `isapprox` implementation of `rtol` and `atol` settings [here](https://github.com/JuliaLang/julia/blob/32534ddeda5d364fa6af00b11460624e81ae4580/base/floatfuncs.jl#L221), I.e. ```julia atol::Real=0, rtol::Real=rtoldefault(x,y,atol) ``` where `rtoldefault` [here](https://github.com/JuliaLang/julia/blob/32534ddeda5d364fa6af00b11460624e81ae4580/base/floatfuncs.jl#L263) calls `real(T)`. Edit: I went back...

I wouldn’t mind taking a crack at a PR for this if you’re on board with changing this implementation, but I’d need to spend a little time making sure I...

I don't have a particularly strong opinion here. The docstring for `Base.one` took me a while to fully parse, but I think I'm generally in favor of the interpretation where...

Meshes.jl is going through an overhaul to their Coordinate Reference Systems, which has included a number of breaking changes. I've done some advocating for DynamicQuantities.jl compatibility, but it sounds like...

Update: looks like this Issue is still valid but now errors differently. Integration of functions that output DynamicQuantities dimensionful types works on a primitive/float-valued domain but not on a dimensionful...

For what little this note is worth, I recently implemented AirspeedVelocity.jl in my package [MeshIntegrals.jl](https://github.com/JuliaGeometry/MeshIntegrals.jl) and distinctly remember seeing this error message. I'm not seeing it now in our Actions...

Speak of the devil... I just got it again in CI over here: https://github.com/JuliaGeometry/MeshIntegrals.jl/pull/122 ```julia-repl Create plots from benchmarks Run mkdir -p plots [ Info: Loading results from results/[email protected] [...

This Issue came in reference from [this conversation on Discourse](https://discourse.julialang.org/t/error-methoderror-cannot-convert-an-object-of-type-missing-to-an-object-of-type-string/). I was mainly concerned about this being a suboptimal error message: the core issue is malformed CSV input on a...