From 9daf8836a1c3698eb0b5dcee9bb550669f4e3c99 Mon Sep 17 00:00:00 2001 From: sacOO7 Date: Mon, 5 Feb 2024 17:06:17 +0530 Subject: [PATCH] Revert "Added http2 extras to httpx explicitly" This reverts commit a5287a08430c2b259119239e845fda5bc8a9934c. --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 15406a51..694264af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,10 +33,10 @@ python = "^3.7" methoddispatch = "^3.0.2" msgpack = "^1.0.0" httpx = [ - { version = "^0.24.1", python = "~3.7", extras= ["http2"] }, - { version = "^0.25.0", python = "^3.8", extras= ["http2"] }, + { version = "^0.24.1", python = "~3.7" }, + { version = "^0.25.0", python = "^3.8" }, ] -#h2 = "^4.1.0" # required for httx package, HTTP2 communication +h2 = "^4.1.0" # required for httx package, HTTP2 communication # Optional dependencies pycrypto = { version = "^2.6.1", optional = true }