We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 294e1e1 commit 11d19abCopy full SHA for 11d19ab
1 file changed
setup.py
@@ -197,8 +197,7 @@ def run(self):
197
if os.environ.get('NO_REPAIR', '0') == '1':
198
print("Skipping wheel repair")
199
return
200
- # if os.environ.get('CIBUILDWHEEL', '0') == '0' or sys.platform.startswith('win'):
201
- if sys.platform.startswith('win'):
+ if os.environ.get('CIBUILDWHEEL', '0') == '0' or sys.platform.startswith('win'):
202
# for linux and macos we use the default wheel repair command from cibuildwheel, for windows we need to do it manually as there is no repair command
203
self.repair_wheel()
204
0 commit comments