Skip to content

Commit

Permalink
IR version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt711 committed Feb 13, 2025
1 parent 7836795 commit 2f40687
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf_polars/cudf_polars/dsl/translate.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def translate_ir(self, *, n: int | None = None) -> ir.IR:
# IR is versioned with major.minor, minor is bumped for backwards
# compatible changes (e.g. adding new nodes), major is bumped for
# incompatible changes (e.g. renaming nodes).
if (version := self.visitor.version()) >= (5, 1):
if (version := self.visitor.version()) >= (6, 1):
e = NotImplementedError(
f"No support for polars IR {version=}"
) # pragma: no cover; no such version for now.
Expand Down

0 comments on commit 2f40687

Please sign in to comment.