Skip to content

Commit

Permalink
Set default tzdata version to be 2017b
Browse files Browse the repository at this point in the history
  • Loading branch information
omus committed Apr 7, 2017
1 parent a66367d commit c3dcf65
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions deps/build.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import TimeZones: build

# ENV variable allows us to only download a single version during CI jobs
build(get(ENV, "JULIA_TZ_VERSION", "latest"))
# ENV variable allows users to modify the default to be "latest". Do NOT use "latest"
# as the default here as can make it difficult to debug to past versions of working code.
# Note: Also allows us to only download a single tzdata version during CI jobs.
build(get(ENV, "JULIA_TZ_VERSION", "2017b"))

0 comments on commit c3dcf65

Please sign in to comment.