]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Add missing quic files to setup.py cythonize [#887].
authorBob Halley <halley@dnspython.org>
Wed, 18 Jan 2023 12:50:29 +0000 (04:50 -0800)
committerBob Halley <halley@dnspython.org>
Wed, 18 Jan 2023 12:50:29 +0000 (04:50 -0800)
setup.py

index c91c7193859d6f11f7933bec608a87d32c5f7cca..2ccaf8bef92d3ef6e34eff1f2d571540d72858b3 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -30,7 +30,8 @@ else:
     from Cython.Build import cythonize
 
     ext_modules = cythonize(
-        ["dns/*.py", "dns/rdtypes/*.py", "dns/rdtypes/*/*.py"], language_level="3"
+        ["dns/*.py", "dns/quic/*.py", "dns/rdtypes/*.py", "dns/rdtypes/*/*.py"],
+        language_level="3",
     )
 
 kwargs = {