diff options
| author | Bob Halley <halley@dnspython.org> | 2021-11-16 07:04:27 -0800 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2021-11-16 07:04:27 -0800 |
| commit | bebf01c04e9fd197f6c50dd64f9a261f313d325f (patch) | |
| tree | 1d8bfacc27746daea3d392df4d4ec3bea5627ad2 /pyproject.toml | |
| parent | abac716478847c4551e238ad8e25d01ba115f241 (diff) | |
| download | dnspython-bebf01c04e9fd197f6c50dd64f9a261f313d325f.tar.gz | |
fix DoH requirements
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 4 |
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'] |
