Skip to content

Commit

Permalink
Eagerness to avoid LazyArtifacts (#444)
Browse files Browse the repository at this point in the history
* LazyArtifacts compat fix suggested by @staticfloat

* avoid LazyArtifacts via eagerness
  • Loading branch information
palday authored Dec 2, 2020
1 parent f76b4ff commit 52651b7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Artifacts.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# println("git-tree-sha1: ", Tar.tree_hash(IOBuffer(inflate_gzip(filename))))
# from https://julialang.github.io/Pkg.jl/dev/artifacts/
git-tree-sha1 = "75260d131b693f26e5834adf855f4c35d627348d"
lazy = true
lazy = false

[[TestData.download]]
# this is the SHA from https://osf.io/djaqb/download?version=4
Expand Down
8 changes: 8 additions & 0 deletions src/MixedModels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ using StatsBase
using StatsModels
using Tables

# When we move to 1.6 as the support lower minimum, we should change Artifact.toml to be lazy
# and add LazyArtifacts to our dependencies
# @static if VERSION > v"1.6.0-DEV.1588" # the actual bound may be lower
# @warn """Loading LazyArtifacts
# This will generate a dependency warning until compatibility with Julia 1.4+1.5 is removed"""
# using LazyArtifacts
# end

using LinearAlgebra: BlasFloat, BlasReal, HermOrSym, PosDefException, copytri!
using Base: Ryu
using GLM: Link, canonicallink
Expand Down

0 comments on commit 52651b7

Please sign in to comment.