From c4294c4d2e564083382f4b9fe1e73c74c8252c70 Mon Sep 17 00:00:00 2001 From: Marek SzwaƂkiewicz Date: Wed, 24 May 2023 16:33:21 +0200 Subject: [INTEGRATION] Pin versions in requirements.txt for healthcheck 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: Ided94572282354e26f1fe46957e4ca1a4ef58402 Signed-off-by: Marek SzwaƂkiewicz --- healthcheck/requirements.txt | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/healthcheck/requirements.txt b/healthcheck/requirements.txt index 42c79b9..a2744bb 100644 --- a/healthcheck/requirements.txt +++ b/healthcheck/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.29.0 -robotframework-selenium2library -robotframework-databaselibrary -robotframework-extendedselenium2library -robotframework-requests -deepdiff -dnspython +robotframework-selenium2library==3.0.0 +robotframework-databaselibrary==1.2.4 +robotframework-extendedselenium2library==0.9.2 +robotframework-requests==0.5.0 +deepdiff==6.3.0 +dnspython==2.3.0 pyyaml>=4.2b1 -json5 +json5==0.9.11 pytz -- cgit 1.2.3-korg