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 Dec 1, 2023
1 parent 0e3004c commit 8ff0969
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion aligned/feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,9 @@ class MyFeatureView:
"""
self.feature_views[view.name] = view
if isinstance(self.feature_source, BatchFeatureSource):
self.feature_source.sources[FeatureLocation.feature_view(view.name).identifier] = view.source
self.feature_source.sources[FeatureLocation.feature_view(view.name).identifier] = (
view.materialized_source or view.source
)

def add_feature_view(self, feature_view: FeatureView) -> None:
self.add_compiled_view(feature_view.compile_instance())
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.47"
version = "0.0.48"
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 8ff0969

Please sign in to comment.