From 3a3ffdf000903f0add9da0e0e428d7c31505b2ca Mon Sep 17 00:00:00 2001
From: Bartek Wrona <wrona@syncad.com>
Date: Thu, 20 Mar 2025 23:33:35 +0100
Subject: [PATCH 1/3] Updated edcsa and six packages to get working Python 3.12
 environment

---
 setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index d43e3ee..1bdb133 100755
--- a/setup.py
+++ b/setup.py
@@ -30,7 +30,7 @@ tests_require = [
     "pycodestyle == 2.7.0",
     "pyflakes == 2.3.1",
     "pylibscrypt == 2.0.0",
-    "six == 1.15.0",
+    "six == 1.17.0",
     "pytest-cov == 4.1.0",
     "coverage == 7.4.3",
     "tox == 4.13.0",
@@ -39,7 +39,7 @@ tests_require = [
 ]
 
 requires = [
-    "ecdsa == 0.16.1",
+    "ecdsa == 0.19.1",
     "requests >= 2.31.0",
     "websocket-client >= 1.6.3",
     "appdirs == 1.4.4",
-- 
GitLab


From e1443a44e0921bd3c5f4349d74bdab6209fef751 Mon Sep 17 00:00:00 2001
From: Bartek Wrona <wrona@syncad.com>
Date: Mon, 24 Mar 2025 17:24:13 +0100
Subject: [PATCH 2/3] Adjusted config to satisfy new setuptools package needs
 (description-file -> description_file)

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

diff --git a/setup.cfg b/setup.cfg
index 3a5c327..77517ea 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
 [metadata]
-description-file = README.rst
+description_file = README.rst
 license_file = LICENSE.txt
 
 [aliases]
-- 
GitLab


From 988237527f60e41ddb25cd317a2bbda9f9746d04 Mon Sep 17 00:00:00 2001
From: Bartek Wrona <wrona@syncad.com>
Date: Mon, 24 Mar 2025 17:25:08 +0100
Subject: [PATCH 3/3] Updated setuptools version to commonly used by other
 packages

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

diff --git a/setup.py b/setup.py
index 1bdb133..6ea2138 100755
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ tests_require = [
     "pytest == 7.2.2",
     "pytest-mock == 3.12.0",
     "parameterized == 0.9.0",
-    "setuptools == 69.1.1",
+    "setuptools == 77.0.3",
     "wheel == 0.42.0",
     "future == 0.18.2",
     "cryptography == 3.4.7",
-- 
GitLab