Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ The library offers various custom [Converters](https://docs.haystack.deepset.ai/
## 🛠️ Installation

```sh
# for pandas (pandas is already included in `haystack-ai`)
pip install dataframes-haystack
# for pandas
pip install "dataframes-haystack[pandas]"

# for polars
pip install "dataframes-haystack[polars]"
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ dependencies = [
"typing_extensions",
]
[project.optional-dependencies]
pandas = ["pandas>=1.0.0"]
polars = ["polars>=0.18.0"]

[project.urls]
Expand All @@ -57,7 +58,7 @@ dependencies = [
"coverage[toml]>=6.5",
"pytest",
]
features = ["polars"]
features = ["pandas", "polars"]
python = "3.8" # This is the minimum supported version

[tool.hatch.envs.default.scripts]
Expand Down
Loading