Skip to content

Commit

Permalink
Update to Isoplot v0.3+
Browse files Browse the repository at this point in the history
  • Loading branch information
brenhinkeller committed Oct 28, 2023
1 parent 21c6538 commit aabae4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ VectorizedStatistics = "3b853605-1c98-4422-8364-4bd93ee0529e"
[compat]
DelimitedFiles = "1"
Distributions = "0.15 - 0.25"
Isoplot = "0.2.10"
Isoplot = "0.3"
KernelDensity = "0.4 - 0.6"
LoopVectorization = "0.12.113"
LsqFit = "0.7 - 0.13"
Expand Down
1 change: 1 addition & 0 deletions src/Chron.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ module Chron
@reexport using NaNStatistics
@reexport using StatGeochemBase
@reexport using Isoplot
using Isoplot: val, err

# Basic statistics and UI resources
using ProgressMeter: @showprogress, Progress, update!
Expand Down
2 changes: 1 addition & 1 deletion src/DistMetropolis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
data[:,4]./=smpl.inputSigmaLevel
analyses = UPbAnalysis.(eachcol(data)...,)
uis = upperintercept.(tpbloss, analyses)
μ, σ = Isoplot.val.(uis), Isoplot.err.(uis)
μ, σ = val.(uis), err.(uis)
else
@info "Interpreting first two columns of $(Name[i]).csv as \n | Age | Age $σstr |"
data[:,2]./=smpl.inputSigmaLevel
Expand Down

2 comments on commit aabae4d

@brenhinkeller
Copy link
Owner 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:

  • Compat updates, including Isoplot to v0.3+

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

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.4.14 -m "<description of version>" aabae4d9b70a339e0dda1450c9999b95a8a3c739
git push origin v0.4.14

Please sign in to comment.