From fccbf2b87871a3e70390d35b08ce8953bbe693bf Mon Sep 17 00:00:00 2001 From: changyonglik Date: Tue, 11 Oct 2022 20:44:18 +0900 Subject: [PATCH 1/3] Added latest deltalake version --- feathr_project/setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/feathr_project/setup.py b/feathr_project/setup.py index b94f65a35..ed3831d3a 100644 --- a/feathr_project/setup.py +++ b/feathr_project/setup.py @@ -37,9 +37,15 @@ "tqdm", "pyarrow", "pyspark>=3.1.2", +<<<<<<< Updated upstream "python-snappy", "deltalake", "graphlib_backport", +======= + "python-snappy<=0.6.1", + "deltalake==0.6.2", + "graphlib_backport<=1.0.3", +>>>>>>> Stashed changes "protobuf==3.*", "azure-keyvault-secrets", "confluent-kafka", From 56c313a322d252f9c4e6b125a76af6925249971a Mon Sep 17 00:00:00 2001 From: Chang Yong Lik <51813538+ahlag@users.noreply.github.com> Date: Wed, 12 Oct 2022 23:02:08 +0800 Subject: [PATCH 2/3] Changed == to <= for deltalake installation --- feathr_project/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/feathr_project/setup.py b/feathr_project/setup.py index 7ee87969e..1f44bd73d 100644 --- a/feathr_project/setup.py +++ b/feathr_project/setup.py @@ -35,7 +35,7 @@ "pyarrow<=9.0.0", "pyspark>=3.1.2", "python-snappy<=0.6.1", - "deltalake==0.6.2", + "deltalake=0.6.2", "graphlib_backport<=1.0.3", "protobuf==3.*", "confluent-kafka<=1.9.2", @@ -65,4 +65,4 @@ "Operating System :: OS Independent", ], python_requires=">=3.7" -) \ No newline at end of file +) From 156343b8ae11022ced1bc6a8f3d3761bf508f6e1 Mon Sep 17 00:00:00 2001 From: changyonglik Date: Thu, 13 Oct 2022 00:16:22 +0900 Subject: [PATCH 3/3] Changed <= to >= --- feathr_project/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feathr_project/setup.py b/feathr_project/setup.py index 1f44bd73d..48f79d553 100644 --- a/feathr_project/setup.py +++ b/feathr_project/setup.py @@ -35,7 +35,7 @@ "pyarrow<=9.0.0", "pyspark>=3.1.2", "python-snappy<=0.6.1", - "deltalake=0.6.2", + "deltalake>=0.6.2", "graphlib_backport<=1.0.3", "protobuf==3.*", "confluent-kafka<=1.9.2",