From b233d63a80c490cc539844fb1d8e1dbb4fe18942 Mon Sep 17 00:00:00 2001 From: "Paulito Palmes, PhD" Date: Wed, 21 Aug 2024 17:08:36 +0100 Subject: [PATCH 1/2] fix pythoncall latest version bug Signed-off-by: Paulito Palmes, PhD --- Project.toml | 4 ++-- docs/src/index.md | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Project.toml b/Project.toml index 9e5c68c3..775052b8 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "AutoMLPipeline" uuid = "08437348-eef5-4817-bc1b-d4e9459680d6" authors = ["Paulito Palmes "] -version = "0.4.4" +version = "0.4.5" [deps] AMLPipelineBase = "e3c3008a-8869-4d53-9f34-c96f99c8a2b6" @@ -15,7 +15,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" AMLPipelineBase = "0.1" CondaPkg = "0.2" DataFrames = "0.17, 0.18, 0.19, 0.20, 0.21, 0.22, 1" -PythonCall = "0.9" +PythonCall = "0.9.0, 0.9.15, 0.9.16, 0.9.17, 0.9.18, 0.9.19, 0.9.20, 0.9.21" julia = "1" [extras] diff --git a/docs/src/index.md b/docs/src/index.md index 26df7c94..f7da9a16 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -1,7 +1,3 @@ -```@meta -Author = "Paulito P. Palmes" -``` - ## AutoMLPipeline (AMLP) is a package that makes it trivial to create complex ML pipeline structures using simple From 27f936e14cd23482539a1431d1ee242bb0bdcd95 Mon Sep 17 00:00:00 2001 From: "Paulito Palmes, PhD" Date: Wed, 21 Aug 2024 18:04:58 +0100 Subject: [PATCH 2/2] fix compat bounds Signed-off-by: Paulito Palmes, PhD --- Project.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 775052b8..0bffbd08 100644 --- a/Project.toml +++ b/Project.toml @@ -14,9 +14,9 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [compat] AMLPipelineBase = "0.1" CondaPkg = "0.2" -DataFrames = "0.17, 0.18, 0.19, 0.20, 0.21, 0.22, 1" -PythonCall = "0.9.0, 0.9.15, 0.9.16, 0.9.17, 0.9.18, 0.9.19, 0.9.20, 0.9.21" -julia = "1" +DataFrames = "1" +PythonCall = "0.9.0 - 0.9.21" +julia = "1.6" [extras] Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"