From 6531b93a5ba5447494818cf7f8c38454b1338052 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 4 Mar 2025 16:22:41 -1000 Subject: [PATCH] fix: reduce size of wheels (#399) first attempt failed to change the correct constant in build_ext.py --- build_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_ext.py b/build_ext.py index 63eecd7..90591a6 100644 --- a/build_ext.py +++ b/build_ext.py @@ -49,7 +49,7 @@ def build(setup_kwargs): setup_kwargs.update( dict( ext_modules=cythonize( - TO_CYTHONIZE, + EXTENSIONS, compiler_directives={"language_level": "3"}, # Python 3 ), cmdclass=dict(build_ext=BuildExt),