From: Paul Schreiber Date: Thu, 2 Nov 2023 14:41:25 +0000 (-0400) Subject: Support newer versions of httpcore (#2885) X-Git-Tag: 0.25.1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=280a89a4d13b65852b065b3e1aaa53d388946a88;p=thirdparty%2Fhttpx.git Support newer versions of httpcore (#2885) * Support newer versions of httpcore httpcore 1.0.0 was release October 6, 2023. * Update pyproject.toml * Update pyproject.toml Co-authored-by: Kar Petrosyan <92274156+karpetrosyan@users.noreply.github.com> * Update pyproject.toml Co-authored-by: Tom Christie * Update CHANGELOG.md --------- Co-authored-by: Tom Christie Co-authored-by: Kar Petrosyan <92274156+karpetrosyan@users.noreply.github.com> --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 73b99c6b..25041f21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added * Add support for Python 3.12. (#2854) +* Add support for httpcore 1.0 (#2885) ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 0626f55f..75c5e7d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,8 @@ classifiers = [ ] dependencies = [ "certifi", - "httpcore>=0.18.0,<0.19.0", + "httpcore", + "anyio", "idna", "sniffio", ]