summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2023-01-18 04:50:29 -0800
committerBob Halley <halley@dnspython.org>2023-01-18 04:50:29 -0800
commit211419bb0df840bab4696be3f6d9544d57df6603 (patch)
tree83ef054dce9793b27d1673db423f85f3fd7f1ebc
parentb8aca8f1a0b7d17a01e0c27d245db0e2f0b9ea70 (diff)
downloaddnspython-211419bb0df840bab4696be3f6d9544d57df6603.tar.gz
Add missing quic files to setup.py cythonize [#887].
-rwxr-xr-xsetup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index c91c719..2ccaf8b 100755
--- 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 = {