Skip to content

Commit

Permalink
Set upper compat bounds (#154)
Browse files Browse the repository at this point in the history
Attempts to fix
JuliaRegistries/General#120430 (comment):

> The following dependencies do not have a [compat] entry that is
upper-bounded and only includes a finite number of breaking releases:
LazyArrays, StatsBase
  • Loading branch information
rikhuijzer authored Nov 30, 2024
1 parent 9f276f7 commit c8f49aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "TuringGLM"
uuid = "0004c1f4-53c5-4d43-a221-a1dac6cf6b74"
authors = ["Jose Storopoli <[email protected]>", "Rik Huijzer <[email protected]>", "contributors"]
authors = ["Jose Storopoli <[email protected]>", "Rik Huijzer <[email protected]>", "contributors"]
version = "2.12.0"

[deps]
Expand All @@ -21,11 +21,11 @@ Turing = "fce5fe82-541a-59a6-adf8-730c64b5f9a0"
[compat]
Distributions = "0.25.42"
GLM = "1.5"
LazyArrays = "0.22 - 2"
LazyArrays = "0.22, 1, 2"
MixedModels = "4.5"
Reexport = "1.2"
Statistics = "1.6"
StatsBase = "0.33 - 34"
StatsBase = "0.33 - 0.34"
StatsModels = "0.6.28 - 0.7"
TableOperations = "1.2"
Tables = "1.6"
Expand Down

2 comments on commit c8f49aa

@rikhuijzer
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

Updated dependencies and fixed a bug for the Bernoulli mixed model.

@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 updated: JuliaRegistries/General/120430

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 v2.12.0 -m "<description of version>" c8f49aa284dd562339eef2616326ba5410ed1bcf
git push origin v2.12.0

Please sign in to comment.