From 9c1a4a68528d8c972297f3d27759740926afbccc Mon Sep 17 00:00:00 2001 From: Pavan Kumar Date: Thu, 10 Apr 2025 15:05:51 +0100 Subject: [PATCH 1/4] Add werkzeug package to setup file --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 41f11e58..cd24d0bb 100644 --- a/setup.py +++ b/setup.py @@ -11,6 +11,7 @@ def getRequires(): deps = [ 'python_http_client>=3.2.1', 'starkbank-ecdsa>=2.0.1' + 'werkzeug>=3.1.3' ] return deps From 76ad55db6bca5006fb59810ec8501711ced54e71 Mon Sep 17 00:00:00 2001 From: Pavan Kumar Date: Thu, 10 Apr 2025 15:12:34 +0100 Subject: [PATCH 2/4] Add werkzeug package to setup file --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cd24d0bb..34e55d8c 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def getRequires(): deps = [ 'python_http_client>=3.2.1', - 'starkbank-ecdsa>=2.0.1' + 'starkbank-ecdsa>=2.0.1', 'werkzeug>=3.1.3' ] return deps From 6373f494969976a15f4f0bc50a104e564ca55dfb Mon Sep 17 00:00:00 2001 From: Pavan Kumar Date: Fri, 11 Apr 2025 13:25:34 +0100 Subject: [PATCH 3/4] Update versions --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 34e55d8c..0071c250 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,10 @@ def getRequires(): deps = [ 'python_http_client>=3.2.1', 'starkbank-ecdsa>=2.0.1', - 'werkzeug>=3.1.3' + "werkzeug>=0.11.15,<1.0.0 ; python_version < '3.0'", + "werkzeug>=0.15.0,<2.0.0 ; python_version >= '3.0' and python_version < '3.6'", + "werkzeug>=2.0.0,<3.0.0 ; python_version >= '3.6' and python_version < '3.11'", + "werkzeug>=3.0.0 ; python_version >= '3.11'" ] return deps From cfb83422b9b4dc5b5f111c451d2fc1cb5493be3d Mon Sep 17 00:00:00 2001 From: Pavan Kumar Date: Thu, 24 Apr 2025 17:34:39 +0100 Subject: [PATCH 4/4] Remove EOL python versions --- .github/workflows/test-and-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index ba8b6990..959970d9 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -17,7 +17,7 @@ jobs: timeout-minutes: 20 strategy: matrix: - python-version: [ '2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' , '3.13'] + python-version: [ '3.9', '3.10', '3.11', '3.12' , '3.13'] env: DOCKER_LOGIN: ${{ secrets.DOCKER_USERNAME && secrets.DOCKER_AUTH_TOKEN }} steps: