From d0aeeaa48969bcdb091c8a9b825e1baa427c628f Mon Sep 17 00:00:00 2001 From: Patrick Kofod Mogensen Date: Tue, 3 Oct 2023 12:14:49 +0200 Subject: [PATCH 1/5] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6758b8c..782a558 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: version: - - '1.1' + - '1.6' - '1' - nightly os: From 393a5adc66eadd19b475df8d339e3be7653b8201 Mon Sep 17 00:00:00 2001 From: Patrick Kofod Mogensen Date: Tue, 3 Oct 2023 12:44:53 +0200 Subject: [PATCH 2/5] Update curve_fit.jl to not send big floats to beta_inc_inv (#245) * Update curve_fit.jl to not send big floats to beta_inc_inv * Update src/curve_fit.jl * Update src/curve_fit.jl --- src/curve_fit.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/curve_fit.jl b/src/curve_fit.jl index 5b0c207..77b5378 100755 --- a/src/curve_fit.jl +++ b/src/curve_fit.jl @@ -299,7 +299,7 @@ function margin_error(fit::LsqFitResult, alpha=0.05; rtol::Real=NaN, atol::Real= # rtol : relative tolerance for approximate comparisson to 0.0 in negativity check std_errors = stderror(fit; rtol=rtol, atol=atol) dist = TDist(dof(fit)) - critical_values = quantile(dist, 1 - alpha / 2) + critical_values = eltype(coef(fit))(quantile(dist, Float64(1 - alpha / 2))) # scale standard errors by quantile of the student-t distribution (critical values) return std_errors * critical_values end From 5e783090cf3d14605d7943216777028aac326c1a Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Tue, 3 Oct 2023 07:03:15 -0400 Subject: [PATCH 3/5] LsqFit 0.13.1 (#244) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index fbbbeb0..8c465a4 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "LsqFit" uuid = "2fda8390-95c7-5789-9bda-21331edee243" -version = "0.13.0" +version = "0.13.1" [deps] Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" From 421e57c0374e54adb992ecbed19094916c561d61 Mon Sep 17 00:00:00 2001 From: Patrick Kofod Mogensen Date: Tue, 3 Oct 2023 13:03:41 +0200 Subject: [PATCH 4/5] Update Project.toml --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 8c465a4..e821d79 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "LsqFit" uuid = "2fda8390-95c7-5789-9bda-21331edee243" -version = "0.13.1" +version = "0.14.0" [deps] Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" From 62f3e5f17dff33dbec0dc72436e2ee197337dc72 Mon Sep 17 00:00:00 2001 From: Patrick Kofod Mogensen Date: Tue, 3 Oct 2023 13:10:09 +0200 Subject: [PATCH 5/5] Update Project.toml (#246) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index e821d79..10968dc 100644 --- a/Project.toml +++ b/Project.toml @@ -15,7 +15,7 @@ Distributions = "0.18, 0.19, 0.20, 0.21, 0.22, 0.23, 0.24, 0.25" ForwardDiff = "0.10" NLSolversBase = "7.5" StatsBase = "0.32, 0.33, 0.34" -julia = "1.1" +julia = "1.6" [extras] StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"