diff --git a/.travis.yml b/.travis.yml index 00b5efc9..449b1446 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,6 @@ os: - linux - osx julia: - - 0.7 - 1.0 - nightly notifications: diff --git a/Project.toml b/Project.toml index 9e9a0f4e..725861e0 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "GLM" uuid = "38e38edf-8417-5370-95a0-9cbb8c7f171a" -version = "1.2.0" +version = "1.3.0" [deps] Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" @@ -35,4 +35,4 @@ Reexport = "0.1, 0.2" SpecialFunctions = "0.6, 0.7" StatsBase = "0.30" StatsFuns = "0.6, 0.7, 0.8" -StatsModels = "0.5" +StatsModels = "0.6" diff --git a/test/runtests.jl b/test/runtests.jl index e196f54e..625d4708 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -51,7 +51,7 @@ end dfrm = DataFrame([categorical(repeat(string.('A':'D'), inner = 6)), categorical(repeat(string.('a':'c'), inner = 2, outer = 4))], [:G, :H]) - f = @eval(@formula($nothing ~ 1+G*H)) + f = @formula(0 ~ 1 + G*H) X = ModelMatrix(ModelFrame(f, dfrm)).m y = X * (1:size(X, 2)) + 0.1 * randn(MersenneTwister(1234321), size(X, 1)) inds = deleteat!(collect(1:length(y)), 7:8) @@ -623,4 +623,3 @@ end @test deviance(glm(@formula(y ~ x₁ + x₂), df, Binomial(), l, maxiter=40)) < 1e-6 end end -