Skip to content

Commit 25f28fe

Browse files
authored
Fix dependencies (#83)
* Fix dependencies * Update .gitignore
1 parent b252210 commit 25f28fe

File tree

5 files changed

+20
-974
lines changed

5 files changed

+20
-974
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/Manifest.toml
1+
Manifest.toml
22
docs/build/
3-
docs/Manifest.toml
43
.lh

Project.toml

+19-13
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
name = "ParetoSmooth"
22
uuid = "a68b5a21-f429-434e-8bfa-46b447300aac"
33
authors = ["Carlos Parada <[email protected]>"]
4-
version = "0.7.4"
4+
version = "0.7.5"
55

66
[deps]
77
AxisKeys = "94b1ba4f-4ee9-5380-92f1-94cde586c3c5"
8-
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
98
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
109
LogExpFunctions = "2ab3a3ac-af41-5b50-aa03-7779005ae688"
1110
MCMCDiagnosticTools = "be115224-59cd-429b-ad48-344e309966f0"
@@ -17,17 +16,9 @@ Requires = "ae029012-a4dd-5104-9daa-d747884805df"
1716
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1817
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1918

20-
[weakdeps]
21-
MCMCChains = "c7f686f2-ff18-58e9-bc7b-31028e88f75d"
22-
DynamicPPL = "366bfd00-2699-11ea-058f-f148b4cae6d8"
23-
24-
[extensions]
25-
ParetoSmoothDynamicPPLExt = ["DynamicPPL", "MCMCChains"]
26-
ParetoSmoothMCMCChainsExt = "MCMCChains"
27-
2819
[compat]
2920
AxisKeys = "0.1.18, 0.2"
30-
DynamicPPL = "0.22"
21+
DynamicPPL = "0.21, 0.22"
3122
LogExpFunctions = "0.3"
3223
MCMCChains = "5"
3324
MCMCDiagnosticTools = "0.1.0"
@@ -37,10 +28,25 @@ Requires = "1.1.3"
3728
StatsBase = "0.33.10"
3829
julia = "1.6"
3930

31+
[extensions]
32+
ParetoSmoothDynamicPPLExt = ["DynamicPPL", "MCMCChains"]
33+
ParetoSmoothMCMCChainsExt = "MCMCChains"
34+
4035
[extras]
41-
MCMCChains = "c7f686f2-ff18-58e9-bc7b-31028e88f75d"
36+
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
37+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
38+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
4239
DynamicPPL = "366bfd00-2699-11ea-058f-f148b4cae6d8"
40+
MCMCChains = "c7f686f2-ff18-58e9-bc7b-31028e88f75d"
41+
RData = "df47a6cb-8c03-5eed-afd8-b6050d6c41da"
42+
StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c"
4343
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
44+
TestSetExtensions = "98d24dd4-01ad-11ea-1b02-c9a08f80db04"
45+
Turing = "fce5fe82-541a-59a6-adf8-730c64b5f9a0"
4446

4547
[targets]
46-
test = ["Test"]
48+
test = ["CSV", "DataFrames", "Distributions", "DynamicPPL", "MCMCChains", "RData", "StatsFuns", "Test", "TestSetExtensions", "Turing"]
49+
50+
[weakdeps]
51+
DynamicPPL = "366bfd00-2699-11ea-058f-f148b4cae6d8"
52+
MCMCChains = "c7f686f2-ff18-58e9-bc7b-31028e88f75d"

src/LeaveOneOut.jl

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using AxisKeys
2-
using InteractiveUtils
32
using NamedDims
43
using Statistics
54
using Printf

0 commit comments

Comments
 (0)