From af385c5b1f08d5dedd56c3491ceb17c1f16c5a75 Mon Sep 17 00:00:00 2001 From: sinhrks Date: Wed, 30 Mar 2016 07:18:17 +0900 Subject: [PATCH] ENH: show_versions to include pandas_datareader --- doc/source/whatsnew/v0.18.1.txt | 2 +- pandas/util/print_versions.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 55750fe5700c6..f075e222feece 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -72,7 +72,7 @@ API changes - ``CParserError`` is now a ``ValueError`` instead of just an ``Exception`` (:issue:`12551`) - +- ``pd.show_versions()`` now includes ``pandas_datareader`` version (:issue:`12740`) diff --git a/pandas/util/print_versions.py b/pandas/util/print_versions.py index c972caad5d74c..115423f3e3e22 100644 --- a/pandas/util/print_versions.py +++ b/pandas/util/print_versions.py @@ -92,7 +92,8 @@ def show_versions(as_json=False): ("pymysql", lambda mod: mod.__version__), ("psycopg2", lambda mod: mod.__version__), ("jinja2", lambda mod: mod.__version__), - ("boto", lambda mod: mod.__version__) + ("boto", lambda mod: mod.__version__), + ("pandas_datareader", lambda mod: mod.__version__) ] deps_blob = list()