We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83258c0 commit 4bcfb2eCopy full SHA for 4bcfb2e
setup.py
@@ -425,7 +425,10 @@ def run(self):
425
426
def finalize_options(self):
427
super().finalize_options()
428
- self.inplace = True
+ # Don't build extensions in-place for the companion binary wheel,
429
+ # since its package subdirectories (svv_accel/...) do not exist in
430
+ # the source tree. Use the default build/lib placement instead.
431
+ self.inplace = (not ACCEL_COMPANION)
432
433
def get_extra_compile_args():
434
extra_args = []
0 commit comments