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 a81695c commit f33c80aCopy full SHA for f33c80a
packages/language_server/src/robotcode/language_server/robotframework/protocol.py
@@ -75,8 +75,8 @@ def check_robotframework() -> None:
75
"RobotFramework not installed in current Python environment, please install it."
76
) from e
77
78
- if get_robot_version() < (4, 0):
79
- raise RobotVersionDontMatchError("Wrong RobotFramework version. Expect version >= 4.0")
+ if get_robot_version() < (4, 1):
+ raise RobotVersionDontMatchError("Wrong RobotFramework version. Expect version >= 4.1")
80
81
82
@dataclass
0 commit comments