Skip to content

Commit

Permalink
Use MCMCDiagnosticTools (#310)
Browse files Browse the repository at this point in the history
* Use InferenceDiagnostics

* Rename InferenceDiagnostics to MCMCDiagnosticTools

* Fix tests

* Bump UnicodePlots

* Fix docs environment (pin Gadfly#master)

* Fix missing link
  • Loading branch information
devmotion authored Aug 27, 2021
1 parent 23d3a2b commit 6fc4eae
Show file tree
Hide file tree
Showing 20 changed files with 1,546 additions and 1,299 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/Docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@ jobs:
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- run: |
julia --project=docs -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()'
- run: julia --project=docs -e 'using Pkg; Pkg.instantiate()'
- run: julia --project=docs docs/make.jl
env:
GKSwstype: nul
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ uuid = "c7f686f2-ff18-58e9-bc7b-31028e88f75d"
keywords = ["markov chain monte carlo", "probablistic programming"]
license = "MIT"
desc = "Chain types and utility functions for MCMC simulations."
version = "4.14.1"
version = "5.0.0"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
AxisArrays = "39de3d68-74b9-583c-8d2d-e117c070f3a9"
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
Expand All @@ -16,6 +15,7 @@ Formatting = "59287772-0a20-5a39-b81b-1366585eb4c0"
IteratorInterfaceExtensions = "82899510-4779-5014-852e-03e436cf321d"
KernelDensity = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MCMCDiagnosticTools = "be115224-59cd-429b-ad48-344e309966f0"
MLJModelInterface = "e80e1ace-859a-464e-9ed9-23947d8ae3ea"
NaturalSort = "c020b1a1-e9b0-503a-9c33-f039bfc54a85"
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
Expand All @@ -30,14 +30,14 @@ TableTraits = "3783bdb8-4a98-5b6b-af9a-565f29a5fe9c"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"

[compat]
AbstractFFTs = "0.5, 1"
AbstractMCMC = "0.4, 0.5, 1.0, 2.0, 3.0"
AxisArrays = "0.4.4"
Compat = "2.2, 3"
Distributions = "0.21, 0.22, 0.23, 0.24, 0.25"
Formatting = "0.4"
IteratorInterfaceExtensions = "0.1.1, 1"
KernelDensity = "0.6.2"
MCMCDiagnosticTools = "0.1"
MLJModelInterface = "0.3.5, 0.4, 1.0"
NaturalSort = "1"
PrettyTables = "0.9, 0.10, 0.11, 0.12, 1"
Expand Down
Loading

2 comments on commit 6fc4eae

@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/43681

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 v5.0.0 -m "<description of version>" 6fc4eae9988ede0506f26bd2229c5bd99bb54518
git push origin v5.0.0

Please sign in to comment.