We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 625d3c1 commit 323df0fCopy full SHA for 323df0f
1 file changed
robotstatuschecker.py
@@ -41,13 +41,12 @@
41
import sys
42
from os.path import abspath
43
44
-from packaging.version import Version
45
from robot import __version__ as rf_version
46
from robot.api import ExecutionResult, ResultVisitor
47
from robot.utils import Matcher
48
49
__version__ = "3.0.0"
50
-RF_61 = Version(rf_version) >= Version("6.1")
+RF_61 = tuple(rf_version.split(".")[:2]) >= ("6", "1")
51
52
53
def process_output(inpath, outpath=None, verbose=True):
0 commit comments