-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert ArviZ.jl into a meta-package (#297)
* Remove unneeded `@doc` * Remove all unneeded dependencies * Remove ArviZStats * Remove R installation from CI * Add PosteriorStats and Reexport as deps * Reexport component packages * Fix broken links * Update stats API docs * Add back PSIS compat bound * Remove unused test dependencies * Remove test Project.toml * Add missing SampleChainsDynamicHMC compat * Remove docs compat entry * Add component packages as docs deps This is needed so that extensions can load the package with `using SomePackage` * Correctly set up to build docstrings in extensions * Build docs strictly * Document meta-ness of package * Build docs nightly * Increment minor version number * Add StatsBase for doctests * Disable caching * Try building docs directly * Copy from InferenceObjects's docs build [no ci] * Revert "Copy from InferenceObjects's docs build [no ci]" This reverts commit cafadf8. * Revert "Revert "Copy from InferenceObjects's docs build"" This reverts commit 0cdfd99. * Revert "Disable caching" This reverts commit 6ccbadf.
- Loading branch information
Showing
35 changed files
with
98 additions
and
4,159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,16 @@ | ||
name = "ArviZ" | ||
uuid = "131c737c-5715-5e2e-ad31-c244f01c1dc7" | ||
authors = ["Seth Axen <[email protected]>"] | ||
version = "0.9.2" | ||
version = "0.10.0" | ||
|
||
[deps] | ||
DataInterpolations = "82cc6244-b520-54b8-b5a6-8a565e85f1d0" | ||
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" | ||
DimensionalData = "0703355e-b756-11e9-17c0-8b28908087d0" | ||
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" | ||
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" | ||
InferenceObjects = "b5cf5a8d-e756-4ee3-b014-01d49d192c00" | ||
IteratorInterfaceExtensions = "82899510-4779-5014-852e-03e436cf321d" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
LogExpFunctions = "2ab3a3ac-af41-5b50-aa03-7779005ae688" | ||
MCMCDiagnosticTools = "be115224-59cd-429b-ad48-344e309966f0" | ||
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a" | ||
Optim = "429524aa-4258-5aef-a3af-852621145aeb" | ||
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" | ||
PSIS = "ce719bf2-d5d0-4fb9-925d-10a81b42ad04" | ||
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d" | ||
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" | ||
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
PosteriorStats = "7f36be82-ad55-44ba-a5c0-b8b5480d7aa5" | ||
Reexport = "189a3867-3050-52da-a836-e630ba90ab69" | ||
Requires = "ae029012-a4dd-5104-9daa-d747884805df" | ||
Setfield = "efcf1570-3423-57d1-acb7-fd33fddbac46" | ||
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" | ||
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" | ||
TableTraits = "3783bdb8-4a98-5b6b-af9a-565f29a5fe9c" | ||
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" | ||
|
||
[weakdeps] | ||
MCMCChains = "c7f686f2-ff18-58e9-bc7b-31028e88f75d" | ||
|
@@ -36,32 +19,30 @@ SampleChainsDynamicHMC = "6d9fd711-e8b2-4778-9c70-c1dfb499d4c4" | |
|
||
[extensions] | ||
ArviZMCMCChainsExt = "MCMCChains" | ||
ArviZSampleChainsExt = "SampleChains" | ||
ArviZSampleChainsDynamicHMCExt = ["SampleChains", "SampleChainsDynamicHMC"] | ||
ArviZSampleChainsExt = "SampleChains" | ||
|
||
[compat] | ||
DataInterpolations = "4" | ||
DimensionalData = "0.23, 0.24" | ||
Distributions = "0.21, 0.22, 0.23, 0.24, 0.25" | ||
DocStringExtensions = "0.8, 0.9" | ||
InferenceObjects = "0.3.10" | ||
IteratorInterfaceExtensions = "0.1.1, 1" | ||
LogExpFunctions = "0.2.0, 0.3" | ||
InferenceObjects = "0.3.11" | ||
MCMCChains = "6" | ||
MCMCDiagnosticTools = "0.3.4" | ||
Optim = "1" | ||
OrderedCollections = "1" | ||
PosteriorStats = "0.1.1" | ||
PSIS = "0.9.1" | ||
PrettyTables = "2.1, 2.2" | ||
Reexport = "1" | ||
Requires = "0.5.2, 1.0" | ||
SampleChains = "0.5" | ||
Setfield = "1" | ||
SampleChainsDynamicHMC = "0.3" | ||
StatsBase = "0.32, 0.33, 0.34" | ||
TableTraits = "0.4, 1" | ||
Tables = "1" | ||
julia = "1.6" | ||
|
||
[extras] | ||
DimensionalData = "0703355e-b756-11e9-17c0-8b28908087d0" | ||
MCMCChains = "c7f686f2-ff18-58e9-bc7b-31028e88f75d" | ||
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
SampleChains = "754583d1-7fc4-4dab-93b5-5eaca5c9622e" | ||
SampleChainsDynamicHMC = "6d9fd711-e8b2-4778-9c70-c1dfb499d4c4" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = ["DimensionalData", "MCMCChains", "OrderedCollections", "Random", "SampleChains", "SampleChainsDynamicHMC", "Test"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
5d5a2d2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
5d5a2d2
There was a problem hiding this comment.
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/89291
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: