From 40f298f033b356748d4222152827d9af77eef79d Mon Sep 17 00:00:00 2001 From: James Vecellio-Grant <159560811+Discountchubbs@users.noreply.github.com> Date: Fri, 1 Aug 2025 07:18:03 -0700 Subject: [PATCH] sunnypilot modeld: Raise Min Selector Version (#1103) Bump to Min 8 to prevent loading conflicts --- sunnypilot/models/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sunnypilot/models/helpers.py b/sunnypilot/models/helpers.py index 2e9b63003..01069cddb 100644 --- a/sunnypilot/models/helpers.py +++ b/sunnypilot/models/helpers.py @@ -21,7 +21,7 @@ from pathlib import Path # see the README.md for more details on the model selector versioning CURRENT_SELECTOR_VERSION = 8 -REQUIRED_MIN_SELECTOR_VERSION = 6 +REQUIRED_MIN_SELECTOR_VERSION = 8 USE_ONNX = os.getenv('USE_ONNX', PC)