From: Bob Halley Date: Sun, 25 Jun 2023 21:05:02 +0000 (-0700) Subject: Add dnssecalgs. X-Git-Tag: v2.4.0rc1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=778254b0d355e9eae0c2ad5b728610caa56d1a7d;p=thirdparty%2Fdnspython.git Add dnssecalgs. --- diff --git a/dns/__init__.py b/dns/__init__.py index 9abdf018..a4249b9e 100644 --- a/dns/__init__.py +++ b/dns/__init__.py @@ -22,6 +22,7 @@ __all__ = [ "asyncquery", "asyncresolver", "dnssec", + "dnssecalgs", "dnssectypes", "e164", "edns", diff --git a/setup.py b/setup.py index 2ccaf8be..cbbbecb0 100755 --- a/setup.py +++ b/setup.py @@ -18,8 +18,8 @@ # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. import sys -from setuptools import setup +from setuptools import setup try: sys.argv.remove("--cython-compile") @@ -30,7 +30,13 @@ else: from Cython.Build import cythonize ext_modules = cythonize( - ["dns/*.py", "dns/quic/*.py", "dns/rdtypes/*.py", "dns/rdtypes/*/*.py"], + [ + "dns/*.py", + "dns/dnssecalgs/*.py", + "dns/quic/*.py", + "dns/rdtypes/*.py", + "dns/rdtypes/*/*.py", + ], language_level="3", )