From d6ec4af67a779f6740db59699c2d140b190343ad Mon Sep 17 00:00:00 2001 From: rxm7706 <95496360+rxm7706@users.noreply.github.com> Date: Fri, 13 Oct 2023 05:58:54 -0500 Subject: [PATCH 1/3] Fix Requirements to match dataprofiler --- requirements.txt | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 27ed0147..2acd3e1f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -numpy>=1.22 +numpy>=1.22.0 scikit-learn>=1.1.0 -scipy==1.8.0 -dataprofiler>=0.8.8 +scipy>=1.10.0 +dataprofiler>=0.10.3 diff --git a/setup.py b/setup.py index 03927e22..4c139453 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def parse_requirements(filename): return [line for line in lineiter if line and not line.startswith("#")] -with open("README.md") as readme: +with open('README.md', mode='r', encoding='utf8') as readme: long_description = readme.read() setup( From cb9af72e4935928708f81901dbf2a87e13fa90b6 Mon Sep 17 00:00:00 2001 From: rxm7706 <95496360+rxm7706@users.noreply.github.com> Date: Sun, 15 Oct 2023 16:49:20 -0500 Subject: [PATCH 2/3] run-precommit locally --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4c139453..2faed537 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def parse_requirements(filename): return [line for line in lineiter if line and not line.startswith("#")] -with open('README.md', mode='r', encoding='utf8') as readme: +with open("README.md", encoding="utf8") as readme: long_description = readme.read() setup( From 983e657f85e16ef106451e3aff59ad2443fb15e2 Mon Sep 17 00:00:00 2001 From: rxm7706 <95496360+rxm7706@users.noreply.github.com> Date: Thu, 26 Oct 2023 15:53:42 -0500 Subject: [PATCH 3/3] Empty-Commit