File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change
1
+ # type: ignore
2
+
1
3
import glob
2
4
import os
3
5
import platform
@@ -283,7 +285,7 @@ def initialize_options(self):
283
285
284
286
def finalize_options (self ):
285
287
develop .finalize_options (self )
286
- if NO_TS :
288
+ if NO_TS or PY_ONLY :
287
289
self .root_is_pure = False
288
290
289
291
def run (self ):
@@ -307,7 +309,7 @@ def initialize_options(self):
307
309
308
310
def finalize_options (self ):
309
311
install .finalize_options (self )
310
- if NO_TS :
312
+ if NO_TS or PY_ONLY :
311
313
self .root_is_pure = False
312
314
313
315
def run (self ):
@@ -331,7 +333,7 @@ def initialize_options(self):
331
333
332
334
def finalize_options (self ):
333
335
bdist_wheel .finalize_options (self )
334
- if NO_TS :
336
+ if NO_TS or PY_ONLY :
335
337
self .root_is_pure = False
336
338
337
339
def run (self ):
@@ -354,7 +356,7 @@ def initialize_options(self):
354
356
355
357
def finalize_options (self ):
356
358
editable_wheel .finalize_options (self )
357
- if NO_TS :
359
+ if NO_TS or PY_ONLY :
358
360
self .root_is_pure = False
359
361
360
362
def run (self ):
You can’t perform that action at this time.
0 commit comments