From 348415dcadb034bea2b1c2188491482201bafff8 Mon Sep 17 00:00:00 2001
From: Adi Lefkowitz <adlefkow@microsoft.com>
Date: Tue, 28 Feb 2023 09:05:33 +0200
Subject: [PATCH 1/4] upgrade azure-kusto-data

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 3780b689..cc573919 100644
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@
 non_pyspark_requires = [
     # Not required in PySpark, because authentication is handled differently there.
     # Release notes: https://github.com/Azure/azure-kusto-python/releases
-    'azure-kusto-data==3.1.0',  # Earlier versions not supported because of: https://github.com/Azure/azure-kusto-python/issues/312
+    'azure-kusto-data==4.1.2',  # Earlier versions not supported because of: https://github.com/Azure/azure-kusto-python/issues/312
 ]
 
 # Not required in PySpark because it is already installed there.

From 465a54a3f4c3da785db22b9f38a71480ba0068a8 Mon Sep 17 00:00:00 2001
From: Adi Lefkowitz <adlefkow@microsoft.com>
Date: Tue, 28 Feb 2023 12:01:50 +0200
Subject: [PATCH 2/4] remove unsupported python version 3.6

---
 .github/workflows/runtests.yml | 2 +-
 setup.py                       | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/.github/workflows/runtests.yml b/.github/workflows/runtests.yml
index bdb9b7f8..c50e488e 100644
--- a/.github/workflows/runtests.yml
+++ b/.github/workflows/runtests.yml
@@ -16,7 +16,7 @@ jobs:
     timeout-minutes: 1
     strategy:
       matrix:
-        python-version: [ '3.6', '3.7', '3.8', '3.9' ]  # Make sure this matches the supported versions in setup.py
+        python-version: [ '3.7', '3.8', '3.9' ]  # Make sure this matches the supported versions in setup.py
     steps:
     - uses: actions/checkout@v2
     - name: Set up Python ${{ matrix.python-version }}
diff --git a/setup.py b/setup.py
index cc573919..31e3204c 100644
--- a/setup.py
+++ b/setup.py
@@ -83,7 +83,6 @@ def run(self):
         "Topic :: Software Development",
         "License :: OSI Approved :: MIT License",
         # Make sure this list matches the tested versions in runtests.yml
-        "Programming Language :: Python :: 3.6",
         "Programming Language :: Python :: 3.7",
         "Programming Language :: Python :: 3.8",
         "Programming Language :: Python :: 3.9",

From 41c6619eda56c953a8dabcad5682a1325e6b3ba6 Mon Sep 17 00:00:00 2001
From: Adi Lefkowitz <adlefkow@microsoft.com>
Date: Tue, 28 Feb 2023 17:46:12 +0200
Subject: [PATCH 3/4] python_requires=">3.6",

---
 pykusto.iml | 1 +
 setup.py    | 1 +
 2 files changed, 2 insertions(+)

diff --git a/pykusto.iml b/pykusto.iml
index f4c20e96..e6b738eb 100644
--- a/pykusto.iml
+++ b/pykusto.iml
@@ -9,6 +9,7 @@
     <content url="file://$MODULE_DIR$">
       <excludeFolder url="file://$MODULE_DIR$/build" />
       <excludeFolder url="file://$MODULE_DIR$/venv" />
+      <excludeFolder url="file://$MODULE_DIR$/pykustovenv" />
     </content>
     <orderEntry type="inheritedJdk" />
     <orderEntry type="sourceFolder" forTests="false" />
diff --git a/setup.py b/setup.py
index 31e3204c..cb498080 100644
--- a/setup.py
+++ b/setup.py
@@ -77,6 +77,7 @@ def run(self):
             'typeguard',
         ],
     },
+    python_requires=">3.6",
     classifiers=[
         "Development Status :: 3 - Alpha",
         "Intended Audience :: Developers",

From 48b15c437012c32fd2c21517bfacb748572979e8 Mon Sep 17 00:00:00 2001
From: adlefkow <adlefkow@microsoft.com>
Date: Wed, 25 Sep 2024 12:17:26 +0300
Subject: [PATCH 4/4] upgrade azure-kusto-data version

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index cb498080..3e771edb 100644
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@
 non_pyspark_requires = [
     # Not required in PySpark, because authentication is handled differently there.
     # Release notes: https://github.com/Azure/azure-kusto-python/releases
-    'azure-kusto-data==4.1.2',  # Earlier versions not supported because of: https://github.com/Azure/azure-kusto-python/issues/312
+    'azure-kusto-data==4.4.0',  # Earlier versions not supported because of: https://github.com/Azure/azure-kusto-python/issues/312
 ]
 
 # Not required in PySpark because it is already installed there.