From 39a0aac88ea2eb9d08293f71f636edc16e536a50 Mon Sep 17 00:00:00 2001 From: Thomas Ballinger Date: Wed, 8 Sep 2021 13:00:00 -0500 Subject: [PATCH] docs fix to avoid nonexistent SmartCompile (#3241) --- docs/compiling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/compiling.rst b/docs/compiling.rst index bf7acfc80..eaf3270e0 100644 --- a/docs/compiling.rst +++ b/docs/compiling.rst @@ -113,7 +113,7 @@ with the following: from pybind11.setup_helpers import ParallelCompile, naive_recompile - SmartCompile("NPY_NUM_BUILD_JOBS", needs_recompile=naive_recompile).install() + ParallelCompile("NPY_NUM_BUILD_JOBS", needs_recompile=naive_recompile).install() If you have a more complex build, you can implement a smarter function and pass