Skip to content

Commit

Permalink
Release new version
Browse files Browse the repository at this point in the history
  • Loading branch information
MatsMoll committed Feb 10, 2024
1 parent ecd0173 commit 6b264b4
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions aligned/schemas/feature_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
if TYPE_CHECKING:
from aligned.retrival_job import RetrivalJob


@dataclass
class CompiledFeatureView(Codable):
name: str
Expand Down
4 changes: 3 additions & 1 deletion aligned/tests/test_transformations.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ class TestAgg:
df = await TestAgg.query().all().to_lazy_polars() # type: ignore

assert df.sort('dob_ssn').collect().equals(values.sort('dob_ssn').select(df.columns).collect())
assert descrete_values.sort('dob_ssn').equals(values.sort('dob_ssn').select(descrete_values.columns).collect())
assert descrete_values.sort('dob_ssn').equals(
values.sort('dob_ssn').select(descrete_values.columns).collect()
)


@pytest.mark.asyncio
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.70"
version = "0.0.71"
description = "A data managment and lineage tool for ML applications."
authors = ["Mats E. Mollestad <mats@mollestad.no>"]
license = "Apache-2.0"
Expand Down
Loading

0 comments on commit 6b264b4

Please sign in to comment.