]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Dependency cleanups [#963].
authorBob Halley <halley@dnspython.org>
Thu, 20 Jul 2023 20:31:35 +0000 (13:31 -0700)
committerBob Halley <halley@dnspython.org>
Thu, 20 Jul 2023 20:32:59 +0000 (13:32 -0700)
(cherry picked from commit 063bd7fa084301bd3c232bfdbd375780963b356f)

pyproject.toml

index 3112ed93ed9145b449df30fb2919c03d07907760..a252f4f983abbefadec94af8390e3e55a5b1a900 100644 (file)
@@ -39,13 +39,12 @@ documentation = "https://dnspython.readthedocs.io/en/stable/"
 
 [tool.poetry.dependencies]
 python = "^3.8"
-httpx = {version=">=0.24.1", optional=true, python=">=3.8"}
-httpcore = {version=">=0.17.3", optional=true, python=">=3.8"}
-h2 = {version=">=4.1.0", optional=true, python=">=3.8"}
+httpx = {version=">=0.24.1", optional=true}
+httpcore = {version=">=0.17.3", optional=true}
+h2 = {version=">=4.1.0", optional=true}
 idna = {version=">=2.1,<4.0", optional=true}
 cryptography = {version=">=2.6,<42.0", optional=true}
 trio = {version=">=0.14,<0.23", optional=true}
-sniffio = {version="^1.1", optional=true}
 wmi = {version="^1.5.1", optional=true}
 aioquic = {version=">=0.9.20", optional=true}
 
@@ -62,7 +61,7 @@ mypy = ">=1.0.1"
 black = "^23.1.0"
 
 [tool.poetry.extras]
-doh = ['httpx', 'h2']
+doh = ['httpx', 'h2', 'httpcore']
 idna = ['idna']
 dnssec = ['cryptography']
 trio = ['trio']