From 2b85d1379af659305cc71db6f43e9f5289591d30 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Wed, 18 Jun 2025 13:15:41 +1200 Subject: [PATCH 1/2] add missing compats; dump support for julia < 1.10 --- .github/workflows/CI.yml | 2 +- Project.toml | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7fca62c..8793288 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -24,7 +24,7 @@ jobs: matrix: version: - '1.10' - - 'nightly' + - '1' os: - ubuntu-latest arch: diff --git a/Project.toml b/Project.toml index 73054a3..5bde484 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "MLJTransforms" uuid = "23777cdb-d90c-4eb0-a694-7c2b83d5c1d6" authors = ["Essam and contributors"] -version = "1.0.0-DEV" +version = "0.1.0" [deps] BitBasis = "50ba71b6-fa0f-514d-ae9a-0916efc90dcf" @@ -20,9 +20,17 @@ TableOperations = "ab02a1b2-a7df-11e8-156e-fb1833f50b87" Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" [compat] +BitBasis = "0.9" CategoricalArrays = "0.10" MLJModelInterface = "1.11" +Combinatorics = "1" +Dates = "1" +Distributions = "0.25" +MLJModelInterface = "1.10" +OrderedCollections = "1" +Parameters = "0.12" ScientificTypes = "3.0" +Statistics = "1" StatsBase = "0.34" TableOperations = "1.2" Tables = "1.11" From 850181ee75f09e41ab2c2d0c089e1c7e4a6bedfc Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Wed, 18 Jun 2025 13:31:14 +1200 Subject: [PATCH 2/2] rm duplicate compat; add LinearAlgebra compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 5bde484..27579db 100644 --- a/Project.toml +++ b/Project.toml @@ -26,7 +26,7 @@ MLJModelInterface = "1.11" Combinatorics = "1" Dates = "1" Distributions = "0.25" -MLJModelInterface = "1.10" +LinearAlgebra = "1" OrderedCollections = "1" Parameters = "0.12" ScientificTypes = "3.0"