]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
update extras
authorBob Halley <halley@dnspython.org>
Fri, 12 Jun 2020 21:01:34 +0000 (14:01 -0700)
committerBob Halley <halley@dnspython.org>
Fri, 12 Jun 2020 21:01:34 +0000 (14:01 -0700)
pyproject.toml
setup.py

index 3c6e85b4e154a87142d35ec7b32d3e1c2ded5650..ea0626d4617d470846093686c917f3da4cb9c517 100644 (file)
@@ -16,6 +16,7 @@ idna = {version="^2.1", optional=true}
 cryptography = {version="^2.6", optional=true}
 trio = {version="^0.14", optional=true}
 curio = {version="^1.2", optional=true}
+sniffio = {version="^1.1", optional=true}
 
 [tool.poetry.dev-dependencies]
 mypy = "^0.770"
index 5dfc61e1171280e84c95e474b40f263a52649c2a..496642f49bf0982ad363786d15f345f39e937b86 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -76,7 +76,8 @@ direct manipulation of DNS zones, messages, names, and records.""",
         'DOH': ['requests', 'requests-toolbelt'],
         'IDNA': ['idna>=2.1'],
         'DNSSEC': ['cryptography>=2.6'],
-        'trio': ['trio>=0.14.0'],
+        'trio': ['trio>=0.14.0', 'sniffio>=1.1'],
+        'curio': ['curio>=1.2', 'sniffio>=1.1'],
         },
     'ext_modules': ext_modules if compile_cython else None,
     'zip_safe': False if compile_cython else None,