fix: reduce size of wheels (#399)

first attempt failed to change the correct constant in build_ext.py
This commit is contained in:
J. Nick Koston
2025-03-04 16:22:41 -10:00
committed by GitHub
parent 09ae6aee68
commit 6531b93a5b

View File

@@ -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),