From ea217612194259e8d47a07cfcfd862eabfc1d754 Mon Sep 17 00:00:00 2001 From: the Mulhern Date: Wed, 15 Jul 2026 15:19:52 -0400 Subject: [PATCH] Increase minimum stratisd version to 3.9.2 Signed-off-by: the Mulhern --- src/stratis_cli/_actions/_constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stratis_cli/_actions/_constants.py b/src/stratis_cli/_actions/_constants.py index a9db9752c..2a1131b69 100644 --- a/src/stratis_cli/_actions/_constants.py +++ b/src/stratis_cli/_actions/_constants.py @@ -23,7 +23,7 @@ SECTOR_SIZE = 512 MAXIMUM_STRATISD_VERSION = "4.0.0" -MINIMUM_STRATISD_VERSION = "3.9.0" +MINIMUM_STRATISD_VERSION = "3.9.2" assert Version(MINIMUM_STRATISD_VERSION) < Version(MAXIMUM_STRATISD_VERSION) REVISION = f"r{MINIMUM_STRATISD_VERSION.split('.')[1]}"