Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
name = "InferenceObjects"
uuid = "b5cf5a8d-e756-4ee3-b014-01d49d192c00"
authors = ["Seth Axen <[email protected]> and contributors"]
version = "0.4.4"
version = "0.4.5"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
DimensionalData = "0703355e-b756-11e9-17c0-8b28908087d0"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"

[weakdeps]
MCMCDiagnosticTools = "be115224-59cd-429b-ad48-344e309966f0"
NCDatasets = "85f8d34a-cbdd-5861-8df4-14fed0d494ab"
PosteriorStats = "7f36be82-ad55-44ba-a5c0-b8b5480d7aa5"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"

[extensions]
InferenceObjectsMCMCDiagnosticToolsExt = ["MCMCDiagnosticTools", "Random"]
InferenceObjectsMCMCDiagnosticToolsExt = "MCMCDiagnosticTools"
InferenceObjectsNCDatasetsExt = "NCDatasets"
InferenceObjectsPosteriorStatsExt = ["PosteriorStats", "StatsBase"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ module InferenceObjectsMCMCDiagnosticToolsExt

using Base: @doc
using DimensionalData: DimensionalData, Dimensions, LookupArrays
using InferenceObjects: InferenceObjects
using InferenceObjects: InferenceObjects, Random
using MCMCDiagnosticTools: MCMCDiagnosticTools
using Random: Random

include("utils.jl")
include("bfmi.jl")
Expand Down
1 change: 1 addition & 0 deletions src/InferenceObjects.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ module InferenceObjects

using Dates: Dates
using DimensionalData: DimensionalData, Dimensions, LookupArrays
using Random: Random
using Tables: Tables

# groups that are officially listed in the schema
Expand Down
Loading