Repository: incubator-airflow Updated Branches: refs/heads/master 624c13392 -> ae6198794
[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 Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/ae619879 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/ae619879 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/ae619879 Branch: refs/heads/master Commit: ae61987945774ea2f9df53eaedac87fb378234a4 Parents: 624c133 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:03:51 2017 +0200 ---------------------------------------------------------------------- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/ae619879/setup.py ---------------------------------------------------------------------- diff --git a/setup.py b/setup.py index b0b2ddd..0a5708c 100644 --- a/setup.py +++ b/setup.py @@ -226,7 +226,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.16.0, <0.17', 'gitpython>=2.0.2',
