Skip to content

Commit

Permalink
Add Werkzeug>=0.14 to install requirements
Browse files Browse the repository at this point in the history
This addresses the issue with the samesite cookie feature outlined
in #115
  • Loading branch information
vimalloc committed Feb 10, 2018
1 parent c78d37a commit 1f10354
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
packages=['flask_jwt_extended'],
zip_safe=False,
platforms='any',
install_requires=['Flask', 'PyJWT'],
install_requires=[
'Werkzeug>=0.14', # needed for samestie cookie functionality
'Flask',
'PyJWT',
],
extras_require={
'asymmetric_crypto': ["cryptography"]
},
Expand Down

0 comments on commit 1f10354

Please sign in to comment.