Skip to content

Commit

Permalink
Remove DSGE from dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
chenwilliam77 committed Aug 7, 2020
1 parent 3500ff2 commit dc50d0e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
8 changes: 1 addition & 7 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "StateSpaceRoutines"
uuid = "261fd431-d7e4-51f7-86ab-ce9e57fc1fff"
authors = ["William Chen <[email protected]>", "Shlok Goyal <[email protected]>", "Alissa Johnson <[email protected]>"]
version = "0.3.2"
version = "0.3.3"

[deps]
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
Expand All @@ -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"]
13 changes: 6 additions & 7 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -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
Expand Down

2 comments on commit dc50d0e

@chenwilliam77
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/19198

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.3 -m "<description of version>" dc50d0e23a62424e02d7d9663e38a1f9af66c712
git push origin v0.3.3

Please sign in to comment.