Skip to content

Commit 3a06aad

Browse files
committed
cli/__init__.py: set required firmware version for running a stored program to v3.2.0
1 parent 11b6249 commit 3a06aad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pybricksdev/cli/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,9 +322,9 @@ async def reconnect_hub():
322322
await hub.download(script_path)
323323

324324
case ResponseOptions.RUN_STORED:
325-
if hub.fw_version < Version("v3.3.0"):
325+
if hub.fw_version < Version("3.2.0-beta.4"):
326326
print(
327-
"Running a stored program remotely is only supported in the hub firmware version >= v3.3.0."
327+
"Running a stored program remotely is only supported in the hub firmware version >= v3.2.0."
328328
)
329329
else:
330330
default_response_option = ResponseOptions.RUN_STORED

0 commit comments

Comments
 (0)