Skip to content

Commit

Permalink
Fix dependencies (#83)
Browse files Browse the repository at this point in the history
* Fix dependencies

* Update .gitignore
  • Loading branch information
devmotion authored May 26, 2023
1 parent b252210 commit 25f28fe
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 974 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/Manifest.toml
Manifest.toml
docs/build/
docs/Manifest.toml
.lh
32 changes: 19 additions & 13 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
name = "ParetoSmooth"
uuid = "a68b5a21-f429-434e-8bfa-46b447300aac"
authors = ["Carlos Parada <[email protected]>"]
version = "0.7.4"
version = "0.7.5"

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

[weakdeps]
MCMCChains = "c7f686f2-ff18-58e9-bc7b-31028e88f75d"
DynamicPPL = "366bfd00-2699-11ea-058f-f148b4cae6d8"

[extensions]
ParetoSmoothDynamicPPLExt = ["DynamicPPL", "MCMCChains"]
ParetoSmoothMCMCChainsExt = "MCMCChains"

[compat]
AxisKeys = "0.1.18, 0.2"
DynamicPPL = "0.22"
DynamicPPL = "0.21, 0.22"
LogExpFunctions = "0.3"
MCMCChains = "5"
MCMCDiagnosticTools = "0.1.0"
Expand All @@ -37,10 +28,25 @@ Requires = "1.1.3"
StatsBase = "0.33.10"
julia = "1.6"

[extensions]
ParetoSmoothDynamicPPLExt = ["DynamicPPL", "MCMCChains"]
ParetoSmoothMCMCChainsExt = "MCMCChains"

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

[targets]
test = ["Test"]
test = ["CSV", "DataFrames", "Distributions", "DynamicPPL", "MCMCChains", "RData", "StatsFuns", "Test", "TestSetExtensions", "Turing"]

[weakdeps]
DynamicPPL = "366bfd00-2699-11ea-058f-f148b4cae6d8"
MCMCChains = "c7f686f2-ff18-58e9-bc7b-31028e88f75d"
1 change: 0 additions & 1 deletion src/LeaveOneOut.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using AxisKeys
using InteractiveUtils
using NamedDims
using Statistics
using Printf
Expand Down
Loading

2 comments on commit 25f28fe

@devmotion
Copy link
Member 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/84292

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.7.5 -m "<description of version>" 25f28fe31cd5022ea48b0d1065e0a3a347c8009b
git push origin v0.7.5

Please sign in to comment.