From 7ae2f359c2bf5610ad736428d222bad28618b7d6 Mon Sep 17 00:00:00 2001 From: Eddy Comyn-Platt <53045993+EddyCMWF@users.noreply.github.com> Date: Tue, 29 Jul 2025 12:50:12 +0100 Subject: [PATCH 1/3] prepare for 1.3.7 release (#35) Merge develop into main --------- Co-authored-by: malmans2 --- multiurl/http.py | 1 + 1 file changed, 1 insertion(+) diff --git a/multiurl/http.py b/multiurl/http.py index 02e5447..d5a7992 100644 --- a/multiurl/http.py +++ b/multiurl/http.py @@ -498,6 +498,7 @@ def wrapped(url, *args, **kwargs): except ( requests.exceptions.ConnectionError, requests.exceptions.ReadTimeout, + requests.exceptions.ChunkedEncodingError, ) as e: r = None LOG.warning( From 98637a5fab06be825d693a01751fb2aa12718d49 Mon Sep 17 00:00:00 2001 From: Eddy Comyn-Platt <53045993+EddyCMWF@users.noreply.github.com> Date: Tue, 29 Jul 2025 12:51:33 +0100 Subject: [PATCH 2/3] Prepare for release 0.3.7 --- multiurl/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multiurl/__init__.py b/multiurl/__init__.py index c4bec96..f69001f 100644 --- a/multiurl/__init__.py +++ b/multiurl/__init__.py @@ -10,7 +10,7 @@ from .downloader import Downloader, download, robust -__version__ = "0.3.7dev0" +__version__ = "0.3.7" __all__ = [ "download", From 64c00a731c579f38ff00af2d179d31d909deaf2e Mon Sep 17 00:00:00 2001 From: Eddy Comyn-Platt <53045993+EddyCMWF@users.noreply.github.com> Date: Tue, 29 Jul 2025 12:55:37 +0100 Subject: [PATCH 3/3] back to develop __version__ --- multiurl/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multiurl/__init__.py b/multiurl/__init__.py index f69001f..059abb4 100644 --- a/multiurl/__init__.py +++ b/multiurl/__init__.py @@ -10,7 +10,7 @@ from .downloader import Downloader, download, robust -__version__ = "0.3.7" +__version__ = "0.3.8dev0" __all__ = [ "download",