From a2c0549d1ba51ea3c7157b0f9ffdd7e13578802c Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Thu, 19 Jan 2023 18:18:03 +0200 Subject: [PATCH] python : fix memory leak from cython (#81) --- bindings/python/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/Makefile b/bindings/python/Makefile index e277e22..679e040 100644 --- a/bindings/python/Makefile +++ b/bindings/python/Makefile @@ -7,7 +7,7 @@ ggwave: pyggwave.bycython.cpp: ggwave.pyx cggwave.pxd python -m pip install cython - cython --cplus ggwave.pyx -o ggwave.bycython.cpp + cython --cleanup=3 --cplus ggwave.pyx -o ggwave.bycython.cpp # To build package, README.rst is needed, because it goes into long description of package, # which is what is visible on PyPI.