From a04ee526d800b8f0d459fe2d19cb924e05a07c54 Mon Sep 17 00:00:00 2001 From: foefl Date: Wed, 22 Oct 2025 08:48:21 +0200 Subject: [PATCH] do not include docstrings in Cython compiled modules --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 818b39e..e1677a8 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,9 @@ from Cython.Build import cythonize +from Cython.Compiler import Options from setuptools import setup +Options.docstrings = False + ext_modules = cythonize(["src/dopt_sensor_anomalies/detection.py"])