From 3afc7d10184ca4b3a7281775bea49f4201b86127 Mon Sep 17 00:00:00 2001 From: Jameson Nash Date: Fri, 3 Nov 2023 15:17:28 -0400 Subject: [PATCH 1/4] Drop support for v1.9 in CI Support was removed in https://github.com/JuliaStats/Statistics.jl/pull/153, though that PR failed to set the correct compat bounds --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb73d9c3..b453737d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,8 @@ jobs: fail-fast: false matrix: version: - - '1' # automatically expands to the latest stable 1.x release of Julia + #- '1' # automatically expands to the latest stable 1.x release of Julia + - '1.10' - 'nightly' os: - ubuntu-latest From 40f3e7f081b6dc5abc865c20d25e558b277f1744 Mon Sep 17 00:00:00 2001 From: Jameson Nash Date: Fri, 3 Nov 2023 15:19:13 -0400 Subject: [PATCH 2/4] Update Project.toml --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index ea683169..5782d97d 100644 --- a/Project.toml +++ b/Project.toml @@ -6,7 +6,7 @@ desc = "Basic statistics for Julia." version = "1.11.0" [compat] -julia = "1.9" +julia = "1.9.4" [deps] LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" From 3475ed0f0ee872c79ff209269fb490bf2a29c97b Mon Sep 17 00:00:00 2001 From: Jameson Nash Date: Fri, 3 Nov 2023 15:21:38 -0400 Subject: [PATCH 3/4] 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 b453737d..6c4208d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: matrix: version: #- '1' # automatically expands to the latest stable 1.x release of Julia - - '1.10' + #- '1.10' - 'nightly' os: - ubuntu-latest From e05c5c6526b3a4e16f933af2f2e143b7a538fe05 Mon Sep 17 00:00:00 2001 From: Jameson Nash Date: Fri, 3 Nov 2023 15:59:05 -0400 Subject: [PATCH 4/4] Update .github/workflows/ci.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mosè Giordano --- .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 6c4208d9..7c648272 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: matrix: version: #- '1' # automatically expands to the latest stable 1.x release of Julia - #- '1.10' + - '~1.10.0-0' - 'nightly' os: - ubuntu-latest