We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 667eb1a commit 6373f49Copy full SHA for 6373f49
setup.py
@@ -11,7 +11,10 @@ def getRequires():
11
deps = [
12
'python_http_client>=3.2.1',
13
'starkbank-ecdsa>=2.0.1',
14
- 'werkzeug>=3.1.3'
+ "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'"
18
]
19
return deps
20
0 commit comments