Repository: incubator-airflow
Updated Branches:
  refs/heads/master 8626186ca -> 2dbd81fa8


[AIRFLOW-1896] FIX bleach <> html5lib incompatibility

Running airflow with bleach 2.0.0 can cause:
`ImportError: No module named base`
https://github.com/mozilla/bleach/issues/267

This was resolved in https://github.com/mozilla/bl
each/releases/tag/v2.1.2

Closes #2858 from kamilchm/patch-1


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

Branch: refs/heads/master
Commit: 2dbd81fa814fefe36f48a00625bde72782683e52
Parents: 8626186
Author: Kamil Chmielewski <kamil....@gmail.com>
Authored: Sat Dec 9 09:34:34 2017 +0100
Committer: Bolke de Bruin <bo...@xs4all.nl>
Committed: Sat Dec 9 09:34:34 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/2dbd81fa/setup.py
----------------------------------------------------------------------
diff --git a/setup.py b/setup.py
index 4e616d7..d97e8e5 100644
--- a/setup.py
+++ b/setup.py
@@ -208,7 +208,7 @@ def do_setup():
         scripts=['airflow/bin/airflow'],
         install_requires=[
             'alembic>=0.8.3, <0.9',
-            'bleach==2.0.0',
+            'bleach==2.1.2',
             'configparser>=3.5.0, <3.6.0',
             'croniter>=0.3.17, <0.4',
             'dill>=0.2.2, <0.3',

Reply via email to