diff options
author | 2023-05-24 16:33:21 +0200 | |
---|---|---|
committer | 2023-05-24 16:33:28 +0200 | |
commit | c4294c4d2e564083382f4b9fe1e73c74c8252c70 (patch) | |
tree | af2c342b5af9a117cb1917431befa5be01fbbce2 /healthcheck | |
parent | e309e2a3c1a8a69421b94eecc73be3b954c3fea7 (diff) |
[INTEGRATION] Pin versions in requirements.txt for healthcheck
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 <marek.szwalkiewicz@external.t-mobile.pl>
Diffstat (limited to 'healthcheck')
-rw-r--r-- | healthcheck/requirements.txt | 26 |
1 files 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 |