Skip to content

Commit 22cf50b

Browse files
sinhrksjreback
authored andcommitted
ENH: show_versions to include pandas_datareader
Author: sinhrks <[email protected]> Closes #12740 from sinhrks/datareader_ver and squashes the following commits: af385c5 [sinhrks] ENH: show_versions to include pandas_datareader
1 parent b550acc commit 22cf50b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

doc/source/whatsnew/v0.18.1.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ API changes
7272

7373

7474
- ``CParserError`` is now a ``ValueError`` instead of just an ``Exception`` (:issue:`12551`)
75-
75+
- ``pd.show_versions()`` now includes ``pandas_datareader`` version (:issue:`12740`)
7676

7777

7878

pandas/util/print_versions.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ def show_versions(as_json=False):
9292
("pymysql", lambda mod: mod.__version__),
9393
("psycopg2", lambda mod: mod.__version__),
9494
("jinja2", lambda mod: mod.__version__),
95-
("boto", lambda mod: mod.__version__)
95+
("boto", lambda mod: mod.__version__),
96+
("pandas_datareader", lambda mod: mod.__version__)
9697
]
9798

9899
deps_blob = list()

0 commit comments

Comments
 (0)