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 135ce67 commit 3aad913Copy full SHA for 3aad913
setup.py
@@ -40,7 +40,12 @@ def enable_sparse() -> bool:
40
41
def is_editable_mode() -> bool:
42
commands = [arg.lower() for arg in sys.argv]
43
- return "develop" in commands or "--editable" in commands or "-e" in commands
+ return (
44
+ "develop" in commands
45
+ or "--editable" in commands
46
+ or "-e" in commands
47
+ or "editable_wheel" in commands
48
+ )
49
50
51
class CMakeExtension(Extension):
0 commit comments