From 7ed2c3d38a5e2a1b4ec82e381ac4b79f775877ff Mon Sep 17 00:00:00 2001 From: Alexis <135333404+Alexis-GP@users.noreply.github.com> Date: Fri, 31 May 2024 21:41:17 +0800 Subject: [PATCH 1/4] Update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2821dbd..c762977 100644 --- a/setup.py +++ b/setup.py @@ -45,8 +45,8 @@ "nltk == 3.4.5", "numpy == 1.14.5", "six == 1.11.0", - "scikit-learn == 0.20.4", - "sentencepiece == 0.1.83"], + "scikit-learn >= 0.20.4", + "sentencepiece >= 0.1.83"], python_requires='>=3.7', classifiers = [ 'License :: OSI Approved :: Apache Software License', From 1a498b11c2abeaaf7e61823e0eb5236cc6b2f06c Mon Sep 17 00:00:00 2001 From: Alexis <135333404+Alexis-GP@users.noreply.github.com> Date: Fri, 31 May 2024 22:10:07 +0800 Subject: [PATCH 2/4] Update requirements.txt --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 83e95bc..18316da 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ nltk==3.4.5 numpy==1.14.5 six==1.11.0 -scikit-learn==0.20.4 -sentencepiece==0.1.83 +scikit-learn>=0.20.4 +sentencepiece>=0.1.83 From 14a727e3283d490e77b912f28bc15a26363ba87a Mon Sep 17 00:00:00 2001 From: Alexis <135333404+Alexis-GP@users.noreply.github.com> Date: Fri, 31 May 2024 22:24:21 +0800 Subject: [PATCH 3/4] Update requirements.txt --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 18316da..eb10009 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ nltk==3.4.5 numpy==1.14.5 six==1.11.0 -scikit-learn>=0.20.4 -sentencepiece>=0.1.83 +scikit-learn==0.24.1 +sentencepiece==0.1.86 From a1692a92c0ef6b602f81dd15e975ebb5bd5c9259 Mon Sep 17 00:00:00 2001 From: Alexis <135333404+Alexis-GP@users.noreply.github.com> Date: Fri, 31 May 2024 22:25:27 +0800 Subject: [PATCH 4/4] Update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c762977..4d3d7b3 100644 --- a/setup.py +++ b/setup.py @@ -45,8 +45,8 @@ "nltk == 3.4.5", "numpy == 1.14.5", "six == 1.11.0", - "scikit-learn >= 0.20.4", - "sentencepiece >= 0.1.83"], + "scikit-learn == 0.24.1", + "sentencepiece == 0.1.86"], python_requires='>=3.7', classifiers = [ 'License :: OSI Approved :: Apache Software License',