Skip to content

Commit

Permalink
Remove DataFrames from deps (unnecessary)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenwilliam77 committed Jan 5, 2021
1 parent 7d82dca commit 259f74a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ version = "0.1.12"
[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Calculus = "49dc2e85-a5d0-5ad3-a950-438e2897f1b9"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Expand All @@ -26,7 +25,6 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
[compat]
BenchmarkTools = "^0.4.3, 0.5"
Calculus = "0.4, 0.5"
DataFrames = "0.17, 0.18, 0.19, 0.20, 0.21, 0.22"
Distributions = "0.18, 0.19, 0.20, 0.21, 0.22, 0.23, 0.24"
FileIO = "1.0.7, 1.1, 1.2, ^1.3"
HDF5 = "0.12, 0.13, 0.14"
Expand Down
2 changes: 1 addition & 1 deletion src/SMC.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
isdefined(Base, :__precompile__) && __precompile__(false)

module SMC
using BenchmarkTools, DataFrames, Dates, Distributed, Distributions
using BenchmarkTools, Dates, Distributed, Distributions
using FileIO, HDF5, JLD2, LinearAlgebra, Random, Test
using ModelConstructors, SparseArrays

Expand Down

2 comments on commit 259f74a

@chenwilliam77
Copy link
Contributor 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/27358

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.1.12 -m "<description of version>" 259f74a20980e9d73a113f63a23e824660996a32
git push origin v0.1.12

Please sign in to comment.