We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65e11a0 commit 18ff87fCopy full SHA for 18ff87f
setup.py
@@ -29,11 +29,12 @@ def build_extension(self, ext: Extension) -> None:
29
import pybind11
30
31
ext_dir = (
32
- (Path.cwd() / self.get_ext_fullpath("")).parent.resolve()
33
- / "amulet_faulthandler"
34
- )
+ Path.cwd() / self.get_ext_fullpath("")
+ ).parent.resolve() / "amulet_faulthandler"
35
faulthandler_src_dir = (
36
- Path.cwd() / "src" / "amulet_faulthandler" if self.editable_mode else ext_dir
+ Path.cwd() / "src" / "amulet_faulthandler"
+ if self.editable_mode
37
+ else ext_dir
38
)
39
40
platform_args = []
0 commit comments