From 7432f6d6ee1ba214c40ac5e440afa121eebb66a9 Mon Sep 17 00:00:00 2001 From: Ethan Date: Tue, 3 Sep 2024 20:43:33 -0400 Subject: [PATCH] Change scikit-learn dependency: ^1.4.0 -> > 1.3.0 (#676) * Change scikit-learn dependency: ^1.4.0 -> > 1.3.0 * Fix poetry lock file * Change to use ^ to specify a compatible range --------- Co-authored-by: Ethan Kim Co-authored-by: GitHub Actions Co-authored-by: Amrit Krishnan --- poetry.lock | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index 66b6ec249..15b21bbfe 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiofiles" @@ -9927,4 +9927,4 @@ xgboost = ["xgboost"] [metadata] lock-version = "2.0" python-versions = ">=3.9, <3.12" -content-hash = "c82945c5b15717293a68d0d4c23d267fd35f804270aefe9dbf07c60803c837c8" +content-hash = "99b6417126f07e7511eddc430b930f654ea8c7f24102d8860cd01867b7f855c0" diff --git a/pyproject.toml b/pyproject.toml index dddccfb8c..3826eed67 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ readme = "README.md" python = ">=3.9, <3.12" pandas = {version = "^2.1", extras = ["performance"]} numpy = "^1.24.0" -scikit-learn = "^1.4.0" +scikit-learn = "^1.3.0" scipy = "^1.11.0" matplotlib = "^3.8.3" datasets = "^2.15.0"