From d200f6008466adbb255666d14c6d195e302d6e49 Mon Sep 17 00:00:00 2001 From: Norman Mu Date: Wed, 10 Aug 2016 17:13:20 -0700 Subject: [PATCH] [AIRFLOW-412] Fix lxml dependency Dear Airflow Maintainers, Please accept this PR that addresses the following issues: - https://issues.apache.org/jira/browse/AIRFLOW-412 Testing Done: -None Closes #1722 from normster/lxml --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 85e519577b..e1793b741e 100644 --- a/setup.py +++ b/setup.py @@ -202,6 +202,7 @@ def do_setup(): 'tabulate>=0.7.5, <0.8.0', 'thrift>=0.9.2, <0.10', 'zope.deprecation>=4.0, <5.0', + 'lxml==3.6.0', ], extras_require={ 'all': devel_all,