requirements: Add 'lxml' as a dependency required for parsing HTML.

We need to parse rendered HTML content of messages while preparing
content for mobile push notifications and for doing so we need to
use lxml's HTML parser.
This commit is contained in:
Harshit Bansal 2017-10-05 21:03:30 +00:00 committed by Tim Abbott
parent 47c5aae5b2
commit 2b7dd8e437
4 changed files with 6 additions and 3 deletions

View File

@ -181,3 +181,6 @@ pyldap==2.4.37
# Install Python Social Auth
social-auth-app-django==1.2.0
# Needed for messages' rendered content parsing in push notifications.
lxml==4.0.0

View File

@ -72,7 +72,7 @@ ipython==6.2.0
jedi==0.10.2 # via ipython
jinja2==2.9.6
jmespath==0.9.3 # via boto3, botocore
lxml==3.8.0 # via parsel, premailer, scrapy
lxml==4.0.0
markdown-include==0.5.1
markdown==2.6.9 # via markdown-include
markupsafe==1.0

View File

@ -51,7 +51,7 @@ ipython-genutils==0.2.0 # via traitlets
ipython==6.2.0
jedi==0.10.2 # via ipython
jinja2==2.9.6
lxml==3.8.0 # via premailer
lxml==4.0.0
markdown-include==0.5.1
markdown==2.6.9 # via markdown-include
markupsafe==1.0

View File

@ -1,2 +1,2 @@
ZULIP_VERSION = "1.6.0+git"
PROVISION_VERSION = '10.3'
PROVISION_VERSION = '10.4'