Skip to content

Commit f33c80a

Browse files
committed
fix(langserver): correct minimum robot version in version check
1 parent a81695c commit f33c80a

File tree

1 file changed

+2
-2
lines changed
  • packages/language_server/src/robotcode/language_server/robotframework

1 file changed

+2
-2
lines changed

packages/language_server/src/robotcode/language_server/robotframework/protocol.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ def check_robotframework() -> None:
7575
"RobotFramework not installed in current Python environment, please install it."
7676
) from e
7777

78-
if get_robot_version() < (4, 0):
79-
raise RobotVersionDontMatchError("Wrong RobotFramework version. Expect version >= 4.0")
78+
if get_robot_version() < (4, 1):
79+
raise RobotVersionDontMatchError("Wrong RobotFramework version. Expect version >= 4.1")
8080

8181

8282
@dataclass

0 commit comments

Comments
 (0)