From e996fb619dc194ed15beafc22ba257c6cf4903ad Mon Sep 17 00:00:00 2001 From: mkb79 Date: Thu, 16 Nov 2023 13:38:54 +0100 Subject: [PATCH] Update httpx version range to >=0.23.3 and <0.26.0 --- CHANGELOG.md | 6 +++++- setup.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f51801c..fc985ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Bugfix - Avoid tqdm progress bar interruption by logger’s output to console. -- Fixing an issue with unawaited coroutines when the download command exited abnormal. +- Fixing an issue with unawaited coroutines when the download command exited abnormal. + +### Changed + +- Update httpx version range to >=0.23.3 and <0.26.0. ### Misc diff --git a/setup.py b/setup.py index f7848f4..594ae5c 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ def read_from_file(key): "audible>=0.8.2", "click>=8", "colorama; platform_system=='Windows'", - "httpx>=0.20.0,<0.24.0", + "httpx>=0.23.3,<0.26.0", "packaging", "Pillow", "tabulate",