Skip to content

Commit 416f5a6

Browse files
committed
Upgrade dependencies
1 parent 6e9ac3c commit 416f5a6

File tree

3 files changed

+24
-13
lines changed

3 files changed

+24
-13
lines changed

Manifest.toml

+11-10
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ version = "0.2.0"
3939

4040
[[Compat]]
4141
deps = ["Base64", "Dates", "DelimitedFiles", "Distributed", "InteractiveUtils", "LibGit2", "Libdl", "LinearAlgebra", "Markdown", "Mmap", "Pkg", "Printf", "REPL", "Random", "Serialization", "SharedArrays", "Sockets", "SparseArrays", "Statistics", "Test", "UUIDs", "Unicode"]
42-
git-tree-sha1 = "84aa74986c5b9b898b0d1acaf3258741ee64754f"
42+
git-tree-sha1 = "ed2c4abadf84c53d9e58510b5fc48912c2336fbb"
4343
uuid = "34da2185-b29b-5c13-b0c7-acf172513d20"
44-
version = "2.1.0"
44+
version = "2.2.0"
4545

4646
[[DataAPI]]
4747
git-tree-sha1 = "674b67f344687a88310213ddfa8a2b3c76cc4252"
@@ -50,9 +50,9 @@ version = "1.1.0"
5050

5151
[[DataStructures]]
5252
deps = ["InteractiveUtils", "OrderedCollections"]
53-
git-tree-sha1 = "517ce30aa57cdfae1ab444a7c0aef8bb86345bc2"
53+
git-tree-sha1 = "f94423c68f2e47db0d6f626a26d4872266e0ec3d"
5454
uuid = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
55-
version = "0.17.1"
55+
version = "0.17.2"
5656

5757
[[Dates]]
5858
deps = ["Printf"]
@@ -98,9 +98,9 @@ version = "0.21.3"
9898

9999
[[FillArrays]]
100100
deps = ["LinearAlgebra", "Random", "SparseArrays"]
101-
git-tree-sha1 = "16974065d5bfa867446d3228bc63f05a440e910b"
101+
git-tree-sha1 = "a2e22cd210dfa3ad1e1e6291fb733741dfabcc9f"
102102
uuid = "1a297f60-69ca-5386-bcde-b61e274b549b"
103-
version = "0.7.2"
103+
version = "0.7.3"
104104

105105
[[ForwardDiff]]
106106
deps = ["CommonSubexpressions", "DiffResults", "DiffRules", "InteractiveUtils", "LinearAlgebra", "NaNMath", "Random", "SparseArrays", "SpecialFunctions", "StaticArrays", "Test"]
@@ -136,9 +136,10 @@ deps = ["Base64"]
136136
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
137137

138138
[[Missings]]
139-
git-tree-sha1 = "29858ce6c8ae629cf2d733bffa329619a1c843d0"
139+
deps = ["DataAPI"]
140+
git-tree-sha1 = "de0a5ce9e5289f27df672ffabef4d1e5861247d5"
140141
uuid = "e1d29d7a-bbdc-5cf2-9ac0-f12de2c33e28"
141-
version = "0.4.2"
142+
version = "0.4.3"
142143

143144
[[Mmap]]
144145
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
@@ -256,9 +257,9 @@ version = "0.7.2"
256257

257258
[[StaticArrays]]
258259
deps = ["LinearAlgebra", "Random", "Statistics"]
259-
git-tree-sha1 = "db23bbf50064c582b6f2b9b043c8e7e98ea8c0c6"
260+
git-tree-sha1 = "1085ffbf5fd48fdba64ef8e902ca429c4e1212d3"
260261
uuid = "90137ffa-7385-5640-81b9-e52037218182"
261-
version = "0.11.0"
262+
version = "0.11.1"
262263

263264
[[Statistics]]
264265
deps = ["LinearAlgebra", "SparseArrays"]

Project.toml

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "CorrectMatch"
22
uuid = "26fcc630-e5d3-11e9-1f2e-33567d4860bc"
3-
version = "0.1.0"
3+
version = "1.0.0"
44

55
[deps]
66
BinDeps = "9e28174c-4ba2-5203-b857-d8d62c4213ee"
@@ -14,4 +14,13 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1414
StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c"
1515

1616
[compat]
17-
julia = "1"
17+
julia = "1"
18+
BinDeps = "0.8"
19+
Compat = "2.2"
20+
Discreet = "0.3"
21+
Distributions = "0.21"
22+
Optim = "0.19"
23+
PDMats = "0.9"
24+
Roots = "0.8"
25+
StatsBase = "0.32"
26+
StatsFuns = "0.8"

src/copula/utils.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
using Compat.Pkg
2020
using Compat: Cvoid
21+
import CorrectMatch
2122

2223
"""
2324
Call the Fortran 'mvndst' routine to integrate multivariate Gaussian
@@ -46,7 +47,7 @@ function call_mvndst(lo::Vector{Float64}, hi::Vector{Float64}, corr_mat; kwargs.
4647
mvndst(lo, hi, infin, flat_corr; kwargs...)
4748
end
4849

49-
const mvndstlib = Pkg.dir("CorrectMatch", "deps", "builds", "mvndst")
50+
const mvndstlib = joinpath(dirname(pathof(CorrectMatch)), "..", "deps", "builds", "mvndst")
5051

5152
function mvndst(lower::Vector{Float64}, upper::Vector{Float64},
5253
infin::Vector{Int}, correl::Vector{Float64};

0 commit comments

Comments
 (0)