Skip to content

Commit

Permalink
Update the downgrade action and fix bounds (#129)
Browse files Browse the repository at this point in the history
* Switch to julia-actions version of downgrade workflow

* Bump StatsBase lower bound to v0.33.7

* Increment patch number

* Bump dependency lower bounds

* Bump test dependency lower bounds
  • Loading branch information
sethaxen authored Nov 17, 2024
1 parent 04d44cb commit 877214d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: cjdoris/julia-downgrade-compat-action@v1
- uses: julia-actions/julia-downgrade-compat@v1
with:
skip: LinearAlgebra,Markdown,Printf,Random,Statistics,Test
if: ${{ matrix.downgrade }}
Expand Down
16 changes: 8 additions & 8 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MCMCDiagnosticTools"
uuid = "be115224-59cd-429b-ad48-344e309966f0"
authors = ["David Widmann", "Seth Axen"]
version = "0.3.10"
version = "0.3.11"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand All @@ -20,27 +20,27 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
[compat]
Aqua = "0.8.1"
AbstractFFTs = "0.5, 1"
DataAPI = "1.8"
DataStructures = "0.18.3"
DataAPI = "1.12"
DataStructures = "0.18.13"
Distributions = "0.25.57"
DynamicHMC = "3.2"
EvoTrees = "0.15, 0.16"
FFTW = "1.1"
EvoTrees = "0.16.2"
FFTW = "1.3"
LinearAlgebra = "1.6"
LogDensityProblems = "0.12, 1, 2"
LogExpFunctions = "0.3.26"
MLJBase = "0.20, 0.21, 1"
MLJBase = "0.20.18, 0.21, 1"
MLJDecisionTreeInterface = "0.3, 0.4"
MLJIteration = "0.5, 0.6"
MLJLIBSVMInterface = "0.2"
MLJModelInterface = "1.6"
MLJModels = "0.16"
MLJXGBoostInterface = "0.3.4"
OffsetArrays = "1.11"
OffsetArrays = "1.13"
Random = "1.6"
SpecialFunctions = "1.8.4, 2"
Statistics = "1.6"
StatsBase = "0.33.3, 0.34"
StatsBase = "0.33.7, 0.34"
StatsFuns = "1"
Tables = "1.11"
Test = "1.6"
Expand Down

2 comments on commit 877214d

@sethaxen
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/119644

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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.3.11 -m "<description of version>" 877214d6f4be31af1a91dc5a5a562e221b8cb326
git push origin v0.3.11

Please sign in to comment.