From 182d574271e6ca6ff552daa085caad07eda37c04 Mon Sep 17 00:00:00 2001 From: Oliver Dunbar <47412152+odunbar@users.noreply.github.com> Date: Fri, 8 Nov 2024 21:08:48 -0800 Subject: [PATCH] fix python versions for default conda installation (#329) --- deps/build.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/build.jl b/deps/build.jl index 3ede3b39c..662f4f2ad 100644 --- a/deps/build.jl +++ b/deps/build.jl @@ -7,5 +7,5 @@ if lowercase(get(ENV, "CI", "false")) == "true" Pkg.build("PyCall") end -Conda.add("scipy=1.8.1", channel = "conda-forge") -Conda.add("scikit-learn=1.1.1") +Conda.add("scipy=1.14.1", channel = "conda-forge") +Conda.add("scikit-learn=1.5.1")