Eric Hanson

Results 461 comments of Eric Hanson

#605 adds some registry unit tests with MetaTesting.jl; we should rebase this PR on top of that one and add additional unit tests to cover this new code

I'm facing some issues with this: 1. startup files are included both at install time and runtime and there doesn't seem anyway to disable it. I think we need to...

I think maybe we just need to pass `-s` to pandoc: https://pandoc.org/chunkedhtml-demo/3.3-general-writer-options.html

I would be okay with also searching LICENSES, it seems obvious enough that the license isn’t hidden or hard to find

The [compat section](https://pkgdocs.julialang.org/v1/toml-files/#The-[compat]-section) also only mentions the `deps` section but it should also mention the `extras` section, as pointed out by @amontoison on Slack. Currently it's awkward to add that...

replying to @IanButterworth: > Changes could be a lot more things than just added or removed i.e. version changes, path changes, pin status etc. So this message prints when `all(p->...

Take another look @IanButterworth ? Seems like this bothers others too, #4031

+1 for an exception, since I want to use this too :). Or maybe it can be it's own small package?

The workaround is to ask DataFrames to copy the columns: ```julia DataFrame(Arrow.Table("/tmp/test.arrow")); copycols=true) ``` The reason for the current behavior is: - `Arrow.Table` exposes an immutable view of the underlying...

> Now, if it actually used that, the push!() would have worked just fine, but instead Arrow.jl is doing something on its own. I don't think that's really accurate, the...