-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump Julia lower bound to v1.10 (LTS) (#225)
* Bump minimum supported Julia version to LTS * Run CI on LTS * Bump Optimization lower bound to 3.21 * Bump Optimization dependencies for compatibility * Remove workaround for old Optimization versions * Add missing compat bound for OptimizationNLopt * Drop support for old OptimizationOptimJL version * Bump OptimizationOptimJL compat * Match package bounds * Match package bounds in docs compat * Bump StatsPlots compat * Change stdlib compats to 1 * Bump integration test julia bounds * Fix deprecation warning * Remove Unpack as dependency * Bump StatsBase compat To bring in bugfix in `histrange` * Remove unnecessary version checks * Increment patch number
- Loading branch information
Showing
14 changed files
with
56 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "Pathfinder" | ||
uuid = "b1d3bc72-d0e7-4279-b92f-7fa5d6d2d454" | ||
authors = ["Seth Axen <[email protected]> and contributors"] | ||
version = "0.9.8" | ||
version = "0.9.9" | ||
|
||
[deps] | ||
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b" | ||
|
@@ -23,7 +23,6 @@ SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462" | |
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" | ||
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" | ||
Transducers = "28d57a85-8fef-5791-bfe6-a80928e7c999" | ||
UnPack = "3a884ed6-31ef-47d7-9d2a-63182c4928ed" | ||
|
||
[weakdeps] | ||
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697" | ||
|
@@ -37,34 +36,34 @@ PathfinderDynamicHMCExt = "DynamicHMC" | |
PathfinderTuringExt = ["Accessors", "DynamicPPL", "MCMCChains", "Turing"] | ||
|
||
[compat] | ||
ADTypes = "0.2, 1" | ||
ADTypes = "0.2.5, 1" | ||
Accessors = "0.1.12" | ||
Distributions = "0.25.87" | ||
DynamicHMC = "3.4.0" | ||
DynamicPPL = "0.25.2, 0.27, 0.28, 0.29, 0.30, 0.31, 0.32" | ||
Folds = "0.2.9" | ||
ForwardDiff = "0.10.19" | ||
ForwardDiff = "0.10.26" | ||
IrrationalConstants = "0.1.1, 0.2" | ||
LinearAlgebra = "1.6" | ||
LinearAlgebra = "1" | ||
LogDensityProblems = "2.1.0" | ||
LogDensityProblemsAD = "1.7.0" | ||
MCMCChains = "6.0.2" | ||
Optim = "1.7.2" | ||
Optimization = "3.16.0, 4" | ||
OptimizationOptimJL = "0.1.7, 0.2, 0.3, 0.4" | ||
Optimization = "3.21, 4" | ||
OptimizationNLopt = "0.2, 0.3" | ||
OptimizationOptimJL = "0.2.1, 0.3, 0.4" | ||
PDMats = "0.11.26" | ||
PSIS = "0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9" | ||
ProgressLogging = "0.1.4" | ||
Random = "1.6" | ||
Random = "1" | ||
Requires = "1.1" | ||
ReverseDiff = "1.4.5" | ||
SciMLBase = "1.95.0, 2" | ||
Statistics = "1.6" | ||
StatsBase = "0.33.7, 0.34" | ||
ReverseDiff = "1.15" | ||
SciMLBase = "2.30" | ||
Statistics = "1" | ||
StatsBase = "0.33.17, 0.34" | ||
Transducers = "0.4.81" | ||
Turing = "0.31.4, 0.32, 0.33, 0.34, 0.35" | ||
UnPack = "1" | ||
julia = "1.6" | ||
julia = "1.10" | ||
|
||
[extras] | ||
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -202,7 +202,7 @@ function pathfinder( | |
kwargs..., | ||
) | ||
end | ||
@unpack ( | ||
(; | ||
itry, | ||
success, | ||
optim_prob, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52fef88
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
52fef88
There was a problem hiding this comment.
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/122360
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.
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: