We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 896454e commit af385c5Copy full SHA for af385c5
doc/source/whatsnew/v0.18.1.txt
@@ -72,7 +72,7 @@ API changes
72
73
74
- ``CParserError`` is now a ``ValueError`` instead of just an ``Exception`` (:issue:`12551`)
75
-
+- ``pd.show_versions()`` now includes ``pandas_datareader`` version (:issue:`12740`)
76
77
78
pandas/util/print_versions.py
@@ -92,7 +92,8 @@ def show_versions(as_json=False):
92
("pymysql", lambda mod: mod.__version__),
93
("psycopg2", lambda mod: mod.__version__),
94
("jinja2", lambda mod: mod.__version__),
95
- ("boto", lambda mod: mod.__version__)
+ ("boto", lambda mod: mod.__version__),
96
+ ("pandas_datareader", lambda mod: mod.__version__)
97
]
98
99
deps_blob = list()
0 commit comments