From f52e1716a080fef5161c6654200a073ea691f8ce Mon Sep 17 00:00:00 2001 From: Jeroen Dekkers Date: Thu, 1 Feb 2024 12:10:53 +0100 Subject: [PATCH] Limit robotframework dependency to version less than 8 (#631) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 64bbca16..5b115de3 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ include_package_data=True, python_requires=">=3.7", install_requires=[ - "robotframework>=4.0", + "robotframework>=4.0,<8.0", "click==8.1.*", "colorama>=0.4.3,<0.4.7", "pathspec>=0.9.0,<0.12.2",