Skip to content

Commit

Permalink
fix[python]: Add pytz to show_versions (#4632)
Browse files Browse the repository at this point in the history
  • Loading branch information
zundertj committed Aug 31, 2022
1 parent f23ff20 commit de733cf
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion py-polars/polars/show_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,15 @@ def show_versions() -> None:

def _get_dependency_info() -> dict[str, str]:
# see the list of dependencies in pyproject.toml
opt_deps = ["pyarrow", "pandas", "numpy", "fsspec", "connectorx", "xlsx2csv"]
opt_deps = [
"pyarrow",
"pandas",
"numpy",
"fsspec",
"connectorx",
"xlsx2csv",
"pytz",
]
return {name: _get_dep_version(name) for name in opt_deps}


Expand Down

0 comments on commit de733cf

Please sign in to comment.