File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ if ( ! $VENV_FILE_AVAILABLE ); then
77
77
pip install $PIP_ARGS patsy
78
78
pip install $PIP_ARGS lxml
79
79
pip install $PIP_ARGS beautifulsoup4
80
+ pip install $PIP_ARGS html5lib
80
81
81
82
# fool statsmodels into thinking pandas was already installed
82
83
# so it won't refuse to install itself. We want it in the zipped venv
Original file line number Diff line number Diff line change 103
103
except :
104
104
print ("sqlalchemy: Not installed" )
105
105
106
+ try :
107
+ import lxml
108
+ from lxml import etree
109
+ print ("lxml: %s" % etree .__version__ )
110
+ except :
111
+ print ("lxml: Not installed" )
112
+
113
+ try :
114
+ import bs4
115
+ print ("bs4: %s" % bs4 .__version__ )
116
+ except :
117
+ print ("bs4: Not installed" )
118
+
119
+ try :
120
+ import html5lib
121
+ print ("html5lib: %s" % html5lib .__version__ )
122
+ except :
123
+ print ("html5lib: Not installed" )
124
+
106
125
print ("\n " )
You can’t perform that action at this time.
0 commit comments