From 10142b44265ca24e8207c2d4a9aa813f531eb681 Mon Sep 17 00:00:00 2001 From: Robert Blackwell Date: Wed, 20 Dec 2023 15:01:03 -0500 Subject: [PATCH] Fix cmdclass typo in setup.py --- python/finufft/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/finufft/setup.py b/python/finufft/setup.py index 17006cb85..3813293d1 100644 --- a/python/finufft/setup.py +++ b/python/finufft/setup.py @@ -130,7 +130,7 @@ def get_tag(self): libraries=[finufft_dlib], runtime_library_dirs=runtime_library_dirs) ], - cmd_class={"build_ext": build_ext, "bdist_wheel": bdist_wheel_abi_none} + cmdclass={"build_ext": build_ext, "bdist_wheel": bdist_wheel_abi_none} ) os.unlink(source_filename)