summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2021-11-16 07:04:27 -0800
committerBob Halley <halley@dnspython.org>2021-11-16 07:04:27 -0800
commitbebf01c04e9fd197f6c50dd64f9a261f313d325f (patch)
tree1d8bfacc27746daea3d392df4d4ec3bea5627ad2 /pyproject.toml
parentabac716478847c4551e238ad8e25d01ba115f241 (diff)
downloaddnspython-bebf01c04e9fd197f6c50dd64f9a261f313d325f.tar.gz
fix DoH requirements
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 4c60837..06648a2 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -30,6 +30,8 @@ exclude = [
[tool.poetry.dependencies]
python = "^3.6"
+httpx = {version=">=0.21.1", optional=true, python=">=3.6.2"}
+h2 = {version=">=4.1.0", optional=true, python=">=3.6.2"}
requests-toolbelt = {version="^0.9.1", optional=true}
requests = {version="^2.23.0", optional=true}
idna = {version=">=2.1,<4.0", optional=true}
@@ -50,7 +52,7 @@ wheel = "^0.35.0"
pylint = "^2.7.4"
[tool.poetry.extras]
-doh = ['httpx[http2]', 'requests', 'requests-toolbelt']
+doh = ['httpx', 'h2', 'requests', 'requests-toolbelt']
idna = ['idna']
dnssec = ['cryptography']
trio = ['trio']