Skip to content

Commit

Permalink
deps(#519): require polars>=0.19.0 (#521)
Browse files Browse the repository at this point in the history
deps(#519): require polars>=0.19.0 

Fixes #519 fixes #518

fix: require polars >= 0.19.0
  • Loading branch information
HLasse authored Feb 27, 2024
2 parents c16728e + 2e50c79 commit 09bbcfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies = [
"frozendict>=2.3.4",
"coloredlogs>14.0.0",
"tqdm>4.1.0",
"polars>0.18.0",
"polars>0.19.0",
"iterpy>=1.6.0",
"rich>=13.0.0",
]
Expand Down
4 changes: 1 addition & 3 deletions src/timeseriesflattener/feature_specs/prediction_times.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@ def __post_init__(self, init_df: InitDF_T):
self.df = self.df.with_columns(
pl.concat_str(
pl.col(self.entity_id_col_name), pl.lit("-"), pl.col(self.timestamp_col_name)
)
.str.strip_chars()
.alias(self.pred_time_uuid_col_name)
).alias(self.pred_time_uuid_col_name)
)

_validate_col_name_columns_exist(obj=self)
Expand Down

0 comments on commit 09bbcfb

Please sign in to comment.