From dc50d0e23a62424e02d7d9663e38a1f9af66c712 Mon Sep 17 00:00:00 2001 From: William Chen Date: Fri, 7 Aug 2020 12:49:59 -0400 Subject: [PATCH] Remove DSGE from dependencies. --- NEWS.md | 3 +++ Project.toml | 8 +------- test/runtests.jl | 13 ++++++------- 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/NEWS.md b/NEWS.md index f29348d..2773547 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,6 @@ +# StateSpaceRoutines.jl v0.3.3 Release notes +- Remove DSGE from dependencies + # StateSpaceRoutines.jl v0.3.2 Release Notes - Raise compatibility to all Julia 1.x versions. diff --git a/Project.toml b/Project.toml index c453fa6..df93455 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "StateSpaceRoutines" uuid = "261fd431-d7e4-51f7-86ab-ce9e57fc1fff" authors = ["William Chen ", "Shlok Goyal ", "Alissa Johnson "] -version = "0.3.2" +version = "0.3.3" [deps] Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b" @@ -27,9 +27,3 @@ PDMats = "^0.9.10, 0.10" Roots = "0.7, 0.8, 1" Tracker = "0.2" julia = "1" - -[extras] -DSGE = "6cf23378-2c47-544c-b0c3-6efefe57ca11" - -[targets] -test = ["DSGE"] diff --git a/test/runtests.jl b/test/runtests.jl index 97f11bc..628bd0c 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,13 +1,12 @@ -using StateSpaceRoutines, DSGE +using StateSpaceRoutines using Test, HDF5, JLD2, FileIO, LinearAlgebra, PDMats, Distributions, Random my_tests = [ - "kalman_filter" - "chand_recursion" - "tempered_particle_filter" - "smoothers" - "dyn_measure_tpf" - "poolmodel_tpf" + "kalman_filter", + "chand_recursion", + "tempered_particle_filter", + "smoothers", + "dyn_measure_tpf", ] for test in my_tests