Skip to content
Snippets Groups Projects
Commit 53310bf1 authored by Bjarke Madsen's avatar Bjarke Madsen
Browse files

Enforce use of Werkzeug 2.3 until flask-login is fixed

parent 69243c3b
Branches
Tags
No related merge requests found
...@@ -30,3 +30,6 @@ types-click~=7.1 ...@@ -30,3 +30,6 @@ types-click~=7.1
sentry-sdk[flask]~=1.23 sentry-sdk[flask]~=1.23
python-dotenv~=1.0 python-dotenv~=1.0
# 2023-10-05 temporary fix for flask-login breaking with werkzeug 3.0
werkzeug~=2.3
...@@ -24,7 +24,9 @@ setup( ...@@ -24,7 +24,9 @@ setup(
'sentry-sdk[flask]~=1.23', 'sentry-sdk[flask]~=1.23',
'authlib~=1.2', 'authlib~=1.2',
'flask-login~=0.6', 'flask-login~=0.6',
'requests~=2.31' 'requests~=2.31',
# 2023-10-05 temporary fix for flask-login breaking with werkzeug 3.0
'werkzeug~=2.3'
], ],
include_package_data=True, include_package_data=True,
entry_points={ entry_points={
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment