We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 266a7ea commit 67ae49fCopy full SHA for 67ae49f
1 file changed
test/orchestratord/mzcompose.py
@@ -1927,12 +1927,10 @@ def check() -> None:
1927
1928
1929
def operator_supports_v1alpha2(definition: dict[str, Any]):
1930
- operator_version = Version.parse(
1931
- definition["operator"]["operator"]["image"]["tag"].removeprefix("v")
+ operator_version = MzVersion.parse(
+ definition["operator"]["operator"]["image"]["tag"]
1932
)
1933
- if operator_version >= Version.parse("26.17.0-dev.0"):
1934
- return True
1935
- return False
+ return operator_version >= MzVersion.parse("v26.20.0-dev.0")
1936
1937
1938
class Properties(Enum):
0 commit comments