Skip to content

Commit

Permalink
Remove direct dependency on SpecialFunctions (#341)
Browse files Browse the repository at this point in the history
* Remove direct dependency on SpecialFunctions

* Fix doctests (#342) (#344)

* Fix doctests

* Fix Github action

* Ensure that tests and docs use same package versions

* Rearrange test dependencies

* Use DecisionTree instead of XGBoost

* Only run doctests on 64bit architectures
  • Loading branch information
devmotion authored Dec 24, 2021
1 parent 4548b5c commit 974d3f5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ 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 = "5.0.1"
version = "5.0.2"

[deps]
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
Expand All @@ -23,7 +23,6 @@ PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c"
Expand All @@ -44,7 +43,6 @@ NaturalSort = "1"
OrderedCollections = "1.4"
PrettyTables = "0.9, 0.10, 0.11, 0.12, 1"
RecipesBase = "0.7, 0.8, 1.0"
SpecialFunctions = "^0.8, 0.9, 0.10, 1.0"
StatsBase = "0.32, 0.33"
StatsFuns = "0.8, 0.9"
TableTraits = "0.4, 1"
Expand Down
1 change: 0 additions & 1 deletion src/MCMCChains.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import AbstractMCMC: chainscat
using Compat
using Distributions
using RecipesBase
using SpecialFunctions
using Formatting
using Dates
using KernelDensity: kde, pdf
Expand Down

2 comments on commit 974d3f5

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

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.2 -m "<description of version>" 974d3f56e8bf7e0e4672d1a01319fc5ab3725c97
git push origin v5.0.2

Please sign in to comment.