Skip to content

Commit

Permalink
Release new version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mats E. Mollestad committed Nov 19, 2023
1 parent 3af48bd commit aab8d45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion aligned/retrival_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,8 @@ async def to_pandas(self) -> pd.DataFrame:
return left.merge(right, how=self.method, left_on=self.left_on, right_on=self.right_on)

def describe(self) -> str:
return (f'({self.left_job.describe()}) -> '
return (
f'({self.left_job.describe()}) -> '
f'Joining with {self.method} {self.left_on} and '
f'{self.right_on} ({self.right_job.describe()})'
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aligned"
version = "0.0.42"
version = "0.0.43"
description = "A scalable feature store that makes it easy to align offline and online ML systems"
authors = ["Mats E. Mollestad <mats@mollestad.no>"]
license = "Apache-2.0"
Expand Down

0 comments on commit aab8d45

Please sign in to comment.