Curtis Vogt

Results 159 issues of Curtis Vogt

Limits what we import from Scratch.jl and LazyArtifacts.jl

See https://github.com/JuliaTime/TimeZones.jl/pull/389#discussion_r917343619 for details. PR causes `TimeZones.build` to automatically be called if the desired tzdata version has not previously been built. This should: - Result in end-users not having to...

Noticed this failure on "Julia 1.6 - windows-latest - x64". I'm not seeing the source of the failure so it seemed best to track this in an issue: ``` Testing...

While working on #359 I took a look over our caching logic for compiled tzdata. We are currently using a cache per-thread to avoid situations where read/writes for the same...

Having Arrow support for the various types defined by this package would be great ```julia julia> using Arrow, TimeZones julia> table = (; col=[FixedTimeZone("UTC-5")]) (col = FixedTimeZone[tz"UTC-05:00"],) julia> t =...

There have been a few major issues with the TimeZones.jl implementation that have been hard to address or just time consuming. In an effort to keep track of the major...

Allows for enforcing that a `Vector` contains `ZonedDateTime`s all using the same `TimeZone`. This idea has been floated around before so I made this issue to centralize the conversation.

Introduces a new type `TZAbbr` which is a specialized string type meant only for [time zone abbreviations](https://data.iana.org/time-zones/theory.html#abbreviations) that minimizes storage costs and allows for inlining. This is meant to be...

Fixes #288. Originally TimeZones.jl serialized the compiled time zone information to reduce the time it took to load the package. Julia has had many improvements since then and now it...

Fixes https://github.com/JuliaTime/TimeZones.jl/issues/271. Current master: ```julia julia> isbitstype(ZonedDateTime) false julia> @btime ZonedDateTime(2000, 1, 2, tz"America/Winnipeg") 72.826 ns (3 allocations: 160 bytes) 2000-01-02T00:00:00-06:00 julia> @btime fill(ZonedDateTime(2000, 1, 2, tz"America/Winnipeg"), 100); 212.670 ns...

performance