We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8d70eb commit 0ff91ecCopy full SHA for 0ff91ec
1 file changed
setup.py
@@ -68,6 +68,11 @@ def run(self):
68
else:
69
super().run()
70
71
+ def finalize_options(self):
72
+ super().finalize_options()
73
+ # Create placeholder directories for package-data validation.
74
+ Path("src/numba/openmp/libs/openmp/lib").mkdir(parents=True, exist_ok=True)
75
+
76
def _build_cmake(self, ext: CMakeExtension):
77
print("Build CMake extension:", ext.name)
78
# Delete build directory if it exists to avoid errors with stale
0 commit comments