Skip to content

Commit 09bc846

Browse files
chore: Add werkzeug package to setup file (#1098)
* Add werkzeug package to setup file * Add werkzeug package to setup file * Update versions * Remove EOL python versions --------- Co-authored-by: Shubham <[email protected]>
1 parent ee54d81 commit 09bc846

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/test-and-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 20
1818
strategy:
1919
matrix:
20-
python-version: [ '2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' , '3.13']
20+
python-version: [ '3.9', '3.10', '3.11', '3.12' , '3.13']
2121
env:
2222
DOCKER_LOGIN: ${{ secrets.DOCKER_USERNAME && secrets.DOCKER_AUTH_TOKEN }}
2323
steps:

setup.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010
def getRequires():
1111
deps = [
1212
'python_http_client>=3.2.1',
13-
'starkbank-ecdsa>=2.0.1'
13+
'starkbank-ecdsa>=2.0.1',
14+
"werkzeug>=0.11.15,<1.0.0 ; python_version < '3.0'",
15+
"werkzeug>=0.15.0,<2.0.0 ; python_version >= '3.0' and python_version < '3.6'",
16+
"werkzeug>=2.0.0,<3.0.0 ; python_version >= '3.6' and python_version < '3.11'",
17+
"werkzeug>=3.0.0 ; python_version >= '3.11'"
1418
]
1519
return deps
1620

0 commit comments

Comments
 (0)