Skip to content

Commit

Permalink
feat[python]: Add "all" optional dependency (#4811)
Browse files Browse the repository at this point in the history
  • Loading branch information
zundertj committed Sep 12, 2022
1 parent 8ee9fd2 commit 40f0320
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ Install the latest polars version with:
# Install Polars only.
$ pip3 install -U 'polars'
# Install Polars with all optional dependencies.
$ pip3 install -U 'polars[all]'
# Install Polars and numpy.
$ pip3 install -U 'polars[numpy]'
Expand Down
3 changes: 3 additions & 0 deletions py-polars/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ fsspec = ["fsspec"]
connectorx = ["connectorx"]
xlsx2csv = ["xlsx2csv >= 0.8.0"]
timezone = ["backports.zoneinfo; python_version < '3.9'", "tzdata; platform_system == 'Windows'"]
all = [
"polars[pyarrow,pandas,numpy,fsspec,connectorx,xlsx2csv,timezone]",
]

[tool.isort]
profile = "black"
Expand Down

0 comments on commit 40f0320

Please sign in to comment.