This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new bb5a8ec88a Add werkzeug limitation until flask-login will handle it 
(#25270)
bb5a8ec88a is described below

commit bb5a8ec88a68a9ab7be5e3e3f01c52601463f4ce
Author: Ko HanJong <hanjong...@navercorp.com>
AuthorDate: Mon Jul 25 17:31:34 2022 +0900

    Add werkzeug limitation until flask-login will handle it (#25270)
    
    * Add werkzeug limitation until flask-login will handle it
    
    * comments for afterwards
---
 setup.cfg | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/setup.cfg b/setup.cfg
index 80f37850e8..d7dd1069a5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -149,7 +149,9 @@ install_requires =
     termcolor>=1.1.0
     typing-extensions>=4.0.0
     unicodecsv>=0.14.1
-    werkzeug>=2.0
+    # werkzeoug 2.2.0 breaks flask-login. see 
https://github.com/maxcountryman/flask-login/issues/686 for details.
+    # we need werkzeug<2.2 limitation until flask_login are handle it
+    werkzeug>=2.0,<2.2
 
 [options.packages.find]
 include =

Reply via email to