Skip to content

Commit

Permalink
Remove sort_schema parameter from ParquetDataset and bump version to …
Browse files Browse the repository at this point in the history
…0.9.3.10
  • Loading branch information
legout committed Dec 9, 2024
1 parent ba6cce3 commit d66541c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions pydala/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,6 @@ def load(
ts_unit: str = "us",
tz: str | None = None,
use_large_string: bool = False,
sort_schema: bool = False,
format_version: str = "2.6",
**kwargs,
):
Expand All @@ -834,7 +833,6 @@ def load(
ts_unit (str, optional): The unit of the timestamp. Defaults to "us".
tz (str | None, optional): The timezone. Defaults to None.
use_large_string (bool, optional): Whether to use large string. Defaults to False.
sort_schema (bool, optional): Whether to sort the schema. Defaults to False.
format_version (str, optional): The version of the data format. Defaults to "2.6".
**kwargs: Additional keyword arguments.
Expand All @@ -853,7 +851,6 @@ def load(
ts_unit=ts_unit,
tz=tz,
use_large_string=use_large_string,
sort=sort_schema,
format_version=format_version,
**kwargs,
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ name = "pydala2"
readme = "README.md"
#repository = "https://github.com/legout/pydala2"
requires-python = ">= 3.10"
version = "0.9.3.9"
version = "0.9.3.10"

[project.optional-dependencies]
legacy = ["polars-lts-cpu>=0.20.4"]
Expand Down

0 comments on commit d66541c

Please sign in to comment.