Tom Gillam

Results 36 issues of Tom Gillam

Currently, `savefig` only supports a filename that is a string, referring to the local filesystem. [FilePathsBase.jl](https://github.com/rofinn/FilePathsBase.jl) provides the `AbstractPath` abstraction, which allows for using more generic paths in I/O functions...

good first issue
extension

Closes #327 This changes the representation of zone-aware datetimes to store a UTC timestamp + zone. Previously Arrow.jl used the _local_ timestamp + zone, which leads to ambiguity failures around...

It seems like the ArrowTypes representation of ZonedDateTime doesn't include enough information to resolve ambiguities around DST, e.g.: ```julia julia> zdt = ZonedDateTime(DateTime(2020, 11, 1, 6), tz"America/New_York"; from_utc=true) 2020-11-01T01:00:00-05:00 julia>...

There might be more than one issue, and maybe not all of them should be solved within `Pkg`. **Observation / issue 1**: Using Julia 1.7.2. Despite a new version of...

I've found that Zygote fails to compute gradients when using the method of `logpdf` defined [here](https://github.com/TuringLang/Bijectors.jl/blob/master/src/transformed_distribution.jl#L93-L97) Here's a MWE: ```julia using Bijectors using DistributionsAD using Flux using Zygote d =...

When multiple sub-projects share a `Manifest.toml` via e.g. `manifest = ../Manifest.toml`, calling `Pkg.update()` within any sub-project is potentially destructive. For context on the set-up, see e.g. #3590 , and @nickrobinson251's...

Closes https://github.com/JuliaTime/TimeZones.jl/issues/422 This is a rebase/reimplementation of #423 onto `master` . (FYI @nickrobinson251, I'm doing this after seeing [your comment](https://github.com/JuliaTime/TimeZones.jl/pull/423#issuecomment-1726079158)!) I started by trying to rebase your PR properly, but...

Pertaining to https://github.com/JuliaTime/TimeZones.jl/issues/419 Needs discussion! I had to increase the length of the FixedTimeZone name, as there was at least one name in `backzone` of length 18 characters.

I'm wondering what the best way is to change the version of tzdata used at runtime. For context: I'd like to do this in tests for a small utility to...