Skip to content

Commit 1f10354

Browse files
committed
Add Werkzeug>=0.14 to install requirements
This addresses the issue with the samesite cookie feature outlined in #115
1 parent c78d37a commit 1f10354

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@
1717
packages=['flask_jwt_extended'],
1818
zip_safe=False,
1919
platforms='any',
20-
install_requires=['Flask', 'PyJWT'],
20+
install_requires=[
21+
'Werkzeug>=0.14', # needed for samestie cookie functionality
22+
'Flask',
23+
'PyJWT',
24+
],
2125
extras_require={
2226
'asymmetric_crypto': ["cryptography"]
2327
},

0 commit comments

Comments
 (0)