From 23bfd834c352ef2a7b56fe7208cc4e702f4f48ec Mon Sep 17 00:00:00 2001 From: Brian Wylie Date: Mon, 9 Dec 2024 11:37:24 -0700 Subject: [PATCH] the newest version of scikit-learn is throwing errors; so pinning for now will circle back later --- applications/aws_dashboard/requirements.txt | 2 +- pyproject.toml | 2 +- requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/applications/aws_dashboard/requirements.txt b/applications/aws_dashboard/requirements.txt index e8e87dfd0..0786b5775 100644 --- a/applications/aws_dashboard/requirements.txt +++ b/applications/aws_dashboard/requirements.txt @@ -8,7 +8,7 @@ sagemaker >= 2.143 cryptography>=42.0.5 ipython>=8.17.2 xgboost>=2.0.3 -scikit-learn >=1.4.2 +scikit-learn >=1.4.2, <= 1.5.2 joblib>=1.3.2 requests>=2.32.0 plotly >= 5.18.0 diff --git a/pyproject.toml b/pyproject.toml index 9898d201f..c925c0da3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ dependencies = [ "ipython >= 8.17.2", "pyreadline3; sys_platform == 'win32'", "xgboost >= 2.0.3", - "scikit-learn >=1.4.2", + "scikit-learn >=1.4.2, <= 1.5.2", "joblib >= 1.3.2", "requests >= 2.26.0" ] diff --git a/requirements.txt b/requirements.txt index b775f90d5..da93963a8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,6 +9,6 @@ cryptography>=42.0.5 ipython>=8.17.2 pyreadline3; sys_platform == 'win32' xgboost>=2.0.3 -scikit-learn >=1.4.2 +scikit-learn >=1.4.2, <= 1.5.2 joblib>=1.3.2 requests>=2.32.0