Skip to content

Commit

Permalink
Dependency cleanups [#963].
Browse files Browse the repository at this point in the history
(cherry picked from commit 063bd7f)
  • Loading branch information
rthalley committed Jul 20, 2023
1 parent 65bfd78 commit a89ad8e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand All @@ -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']
Expand Down

0 comments on commit a89ad8e

Please sign in to comment.