Skip to content

Commit 774498b

Browse files
Rik-de-KortWillAyd
authored andcommitted
Follow-up: XLSB Support (#31215)
1 parent 118dc6c commit 774498b

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

doc/source/getting_started/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ pyarrow 0.12.0 Parquet, ORC (requires 0.13.0), and
264264
pymysql 0.7.11 MySQL engine for sqlalchemy
265265
pyreadstat SPSS files (.sav) reading
266266
pytables 3.4.2 HDF5 reading / writing
267-
pyxlsb 1.0.5 Reading for xlsb files
267+
pyxlsb 1.0.6 Reading for xlsb files
268268
qtpy Clipboard I/O
269269
s3fs 0.3.0 Amazon S3 access
270270
tabulate 0.8.3 Printing in Markdown-friendly format (see `tabulate`_)

pandas/compat/_optional.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"pyarrow": "0.13.0",
2020
"pytables": "3.4.2",
2121
"pytest": "5.0.1",
22-
"pyxlsb": "1.0.5",
22+
"pyxlsb": "1.0.6",
2323
"s3fs": "0.3.0",
2424
"scipy": "0.19.0",
2525
"sqlalchemy": "1.1.4",

pandas/tests/io/excel/test_readers.py

-5
Original file line numberDiff line numberDiff line change
@@ -562,11 +562,6 @@ def test_bad_engine_raises(self, read_ext):
562562

563563
@tm.network
564564
def test_read_from_http_url(self, read_ext):
565-
if read_ext == ".xlsb":
566-
pytest.xfail("xlsb files not present in master repo yet")
567-
if pd.read_excel.keywords["engine"] == "pyxlsb":
568-
pytest.xfail("Sheets containing datetimes not supported by pyxlsb")
569-
570565
url = (
571566
"https://raw.githubusercontent.com/pandas-dev/pandas/master/"
572567
"pandas/tests/io/data/excel/test1" + read_ext

0 commit comments

Comments
 (0)