From e5cc6bc61ad9158a731fb9359cbaa5fbd4363b8f Mon Sep 17 00:00:00 2001 From: Jan Stratil Date: Wed, 19 Oct 2022 15:53:03 +0000 Subject: [PATCH 1/3] Release attrs dep upper bound as it's no longer needed. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 379500c..78e51e6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -attrs>=18.0,<20.4.0 +attrs>=18.0 enum34>=0.9,<1.2.0 ; python_version < '3.6' furl>=2.0.0,<2.2.0 future>=0.16.0,<0.19.0 From 970a860e76cb9a462d4a79dc303351f7557808ee Mon Sep 17 00:00:00 2001 From: Jan Stratil Date: Wed, 19 Oct 2022 15:53:31 +0000 Subject: [PATCH 2/3] Fix deprecation warning regarding urllib3 BACKOFF_MAX. --- clearml_agent/backend_api/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearml_agent/backend_api/utils.py b/clearml_agent/backend_api/utils.py index d85ec8e..be5c575 100644 --- a/clearml_agent/backend_api/utils.py +++ b/clearml_agent/backend_api/utils.py @@ -86,7 +86,7 @@ def get_http_session_with_retry( session = requests.Session() if backoff_max is not None: - Retry.BACKOFF_MAX = backoff_max + Retry.DEFAULT_BACKOFF_MAX = backoff_max retry = Retry( total=total, connect=connect, read=read, redirect=redirect, status=status, From 4cd85042f5dd1d6e4ee847fc481ea3eee3268a29 Mon Sep 17 00:00:00 2001 From: Jan Stratil Date: Wed, 19 Oct 2022 15:54:08 +0000 Subject: [PATCH 3/3] Bump version to 1.4.2. --- clearml_agent/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearml_agent/version.py b/clearml_agent/version.py index 8e3c933..98d186b 100644 --- a/clearml_agent/version.py +++ b/clearml_agent/version.py @@ -1 +1 @@ -__version__ = '1.4.1' +__version__ = '1.4.2'