From: Tatiana Shpeisman Date: Fri, 2 Feb 2018 22:14:13 +0000 (-0800) Subject: Changed minimal required version of bleach Python package from 1.5 to 2.0. bleach... X-Git-Tag: upstream/v1.7.0~31^2~1043 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cbda8a9c36aeaa2b98c17019e9743134eecc89c1;p=platform%2Fupstream%2Ftensorflow.git Changed minimal required version of bleach Python package from 1.5 to 2.0. bleach 1.5 causes problems with Jupyter as reported in #16424 PiperOrigin-RevId: 184332663 --- diff --git a/tensorflow/tools/ci_build/install/install_pip_packages.sh b/tensorflow/tools/ci_build/install/install_pip_packages.sh index 71744c0..d406b83 100755 --- a/tensorflow/tools/ci_build/install/install_pip_packages.sh +++ b/tensorflow/tools/ci_build/install/install_pip_packages.sh @@ -43,8 +43,8 @@ pip2 install --upgrade werkzeug==0.11.10 pip3 install --upgrade werkzeug==0.11.10 # Install bleach. html5lib will be picked up as a dependency. -pip2 install --upgrade bleach==1.5.0 -pip3 install --upgrade bleach==1.5.0 +pip2 install --upgrade bleach==2.0.0 +pip3 install --upgrade bleach==2.0.0 # Install markdown. pip2 install --upgrade markdown==2.6.8