]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Support newer versions of httpcore (#2885)
authorPaul Schreiber <paulschreiber@gmail.com>
Thu, 2 Nov 2023 14:41:25 +0000 (10:41 -0400)
committerGitHub <noreply@github.com>
Thu, 2 Nov 2023 14:41:25 +0000 (14:41 +0000)
* 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 <tom@tomchristie.com>
* Update CHANGELOG.md

---------

Co-authored-by: Tom Christie <tom@tomchristie.com>
Co-authored-by: Kar Petrosyan <92274156+karpetrosyan@users.noreply.github.com>
CHANGELOG.md
pyproject.toml

index 73b99c6b17228bdd2f5338f88794b8325e0081ce..25041f21b23b41378aca55e2fe191b10fdc1c4d5 100644 (file)
@@ -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
 
index 0626f55f9756a22a99f9c6122ef2871b1d71ea10..75c5e7d90c1fafeef7e6eac52125f664c2844db7 100644 (file)
@@ -29,7 +29,8 @@ classifiers = [
 ]
 dependencies = [
     "certifi",
-    "httpcore>=0.18.0,<0.19.0",
+    "httpcore",
+    "anyio",
     "idna",
     "sniffio",
 ]