Skip to content

Commit

Permalink
Add pymysql, psycopg2 and rpy2 to show_versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed Feb 13, 2014
1 parent 3e54611 commit 7b0317e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pandas/util/print_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,15 @@ def show_versions(as_json=False):
("xlrd", lambda mod: mod.__VERSION__),
("xlwt", lambda mod: mod.__VERSION__),
("xlsxwriter", lambda mod: mod.__version__),
("sqlalchemy", lambda mod: mod.__version__),
("lxml", lambda mod: mod.etree.__version__),
("bs4", lambda mod: mod.__version__),
("html5lib", lambda mod: mod.__version__),
("bq", lambda mod: mod._VersionNumber()),
("apiclient", lambda mod: mod.__version__),
("rpy2", lambda mod: mod.__version__),
("sqlalchemy", lambda mod: mod.__version__),
("pymysql", lambda mod: mod.__version__),
("psycopg2", lambda mod: mod.__version__),
]

deps_blob = list()
Expand Down

1 comment on commit 7b0317e

@jreback
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

excellent!

Please sign in to comment.