From 379be6ef16ba5f69b9df76e7ff149ee9efb21a99 Mon Sep 17 00:00:00 2001 From: Marek SzwaƂkiewicz Date: Thu, 11 May 2023 14:26:51 +0200 Subject: [INTEGRATION] Pin versions in requirements.txt for smoke-usecases-robot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The cause of the base issue was Selenium moving from 4.8.x to 4.9.x which changed many dependencies and broke the versions of libssl wrappers. Now selenium is pinned to 4.8.x and all other packages are pinned to latest working versions. Issue-ID: INT-2237 Change-Id: Id2b20ff8d4ffada6565bb8af5f8ef3c4edf972b5 Signed-off-by: Marek SzwaƂkiewicz --- smoke-usecases-robot/requirements.txt | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/smoke-usecases-robot/requirements.txt b/smoke-usecases-robot/requirements.txt index 4274f19..1902ea5 100644 --- a/smoke-usecases-robot/requirements.txt +++ b/smoke-usecases-robot/requirements.txt @@ -1,16 +1,16 @@ -selenium -robotframework-seleniumlibrary -robotframework-archivelibrary -robotframework-sshlibrary -robotframework-httplibrary -robotframework-ftplibrary +selenium==4.8.3 +robotframework-seleniumlibrary==6.0.0 +robotframework-archivelibrary==0.4.2 +robotframework-sshlibrary==3.3.0 +robotframework-httplibrary==0.4.2 +robotframework-ftplibrary==1.9 requests>=2.20.0 -robotframework-selenium2library -robotframework-databaselibrary -robotframework-extendedselenium2library -robotframework-requests -robotframework-jsonlibrary -deepdiff -dnspython +robotframework-selenium2library==3.0.0 +robotframework-databaselibrary==1.2.4 +robotframework-extendedselenium2library==0.9.2 +robotframework-requests==0.5.0 +robotframework-jsonlibrary==0.5 +deepdiff==6.3.0 +dnspython==2.3.0 pyyaml>=4.2b1 -json5 +json5==0.9.11 -- cgit 1.2.3-korg