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 2ec2f3f commit aef4094Copy full SHA for aef4094
1 file changed
test/orchestratord/mzcompose.py
@@ -1939,12 +1939,10 @@ def check() -> None:
1939
1940
1941
def operator_supports_v1alpha2(definition: dict[str, Any]):
1942
- operator_version = Version.parse(
1943
- definition["operator"]["operator"]["image"]["tag"].removeprefix("v")
+ operator_version = MzVersion.parse(
+ definition["operator"]["operator"]["image"]["tag"]
1944
)
1945
- if operator_version >= Version.parse("26.17.0-dev.0"):
1946
- return True
1947
- return False
+ return operator_version >= MzVersion.parse("v26.18.0-dev.0")
1948
1949
1950
class Properties(Enum):
0 commit comments