From 94384d77abd980f82bebc4aab191d8405ba7928c Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Wed, 13 Mar 2024 15:02:42 -0300 Subject: [PATCH] Double quotes to keep black compliance in setup.py Co-authored-by: Dr. Johannes Pohl --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 13db47077..d3297838d 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ def finalize_options(self): print("Finalizing options") _build_ext.finalize_options(self) # Prevent numpy from thinking it is still in its setup process: - set_builtin('__NUMPY_SETUP__', False) + set_builtin("__NUMPY_SETUP__", False) import numpy self.include_dirs.append(numpy.get_include())