Skip to content

Commit deea532

Browse files
committed
Bump lxml
1 parent 9407039 commit deea532

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

ci/deps/travis-36-locale.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ dependencies:
1212
- html5lib
1313
- ipython
1414
- jinja2
15-
- lxml=3.7.0
16-
- matplotlib=3.0.2
15+
- lxml=3.8.0
16+
- matplotlib=3.0.*
1717
- nomkl
1818
- numexpr
1919
- numpy

doc/source/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ blosc Compression for msgpack
278278
fastparquet 0.2.1 Parquet reading / writing
279279
gcsfs 0.1.0 Google Cloud Storage access
280280
html5lib HTML parser for read_html (see :ref:`note <optional_html>`)
281-
lxml HTML parser for read_html (see :ref:`note <optional_html>`)
281+
lxml 3.8.0 HTML parser for read_html (see :ref:`note <optional_html>`)
282282
matplotlib 2.2.2 Visualization
283283
openpyxl 2.4.8 Reading / writing for xlsx files
284284
pandas-gbq 0.8.0 Google Big Query access

doc/source/whatsnew/v0.25.0.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,8 @@ Optional libraries below the lowest tested version may still work, but are not c
422422
+-----------------+-----------------+
423423
| fastparquet | 0.2.1 |
424424
+-----------------+-----------------+
425+
| lxml | 3.8.0 |
426+
+-----------------+-----------------+
425427
| matplotlib | 2.2.2 |
426428
+-----------------+-----------------+
427429
| openpyxl | 2.4.8 |

pandas/compat/_optional.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"bottleneck": "1.2.1",
1111
"fastparquet": "0.2.1",
1212
"gcsfs": "0.1.0",
13+
"lxml.etree": "3.8.0",
1314
"matplotlib": "2.2.2",
1415
"numexpr": "2.6.2",
1516
"openpyxl": "2.4.8",

pandas/io/html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def _importers():
4040
on_version="ignore")
4141
_HAS_BS4 = bs4 is not None
4242

43-
lxml = import_optional_dependency("lxml", raise_on_missing=False,
43+
lxml = import_optional_dependency("lxml.etree", raise_on_missing=False,
4444
on_version="ignore")
4545
_HAS_LXML = lxml is not None
4646

0 commit comments

Comments
 (0)