Repository: incubator-airflow
Updated Branches:
  refs/heads/v1-8-test 803e3494d -> 0db3249df


[AIRFLOW-1180] Fix flask-wtf version for test_csrf_rejection

For now, SecurityTests.test_csrf_rejection fails
because flask-wtf version specified in setup.py is
too old.
This PR fixes it.

Closes #2280 from sekikn/AIRFLOW-1180

(cherry picked from commit ae61987945774ea2f9df53eaedac87fb378234a4)
Signed-off-by: Bolke de Bruin <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/0db3249d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/0db3249d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/0db3249d

Branch: refs/heads/v1-8-test
Commit: 0db3249df516d4fbc60d47a25000fcbae45185af
Parents: 803e349
Author: Kengo Seki <[email protected]>
Authored: Sat May 13 21:03:51 2017 +0200
Committer: Bolke de Bruin <[email protected]>
Committed: Sat May 13 21:04:05 2017 +0200

----------------------------------------------------------------------
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/0db3249d/setup.py
----------------------------------------------------------------------
diff --git a/setup.py b/setup.py
index 7426ce9..c23cfc4 100644
--- a/setup.py
+++ b/setup.py
@@ -215,7 +215,7 @@ def do_setup():
             'flask-cache>=0.13.1, <0.14',
             'flask-login==0.2.11',
             'flask-swagger==0.2.13',
-            'flask-wtf==0.12',
+            'flask-wtf==0.14',
             'funcsigs==1.0.0',
             'future>=0.15.0, <0.16',
             'gitpython>=2.0.2',

Reply via email to