@@ -457,7 +457,7 @@ def setup_py_dir(self):
457
457
self .link and self .link .subdirectory_fragment or '' )
458
458
459
459
@property
460
- def setup_py (self ):
460
+ def setup_py_path (self ):
461
461
# type: () -> str
462
462
assert self .source_dir , "No source dir for %s" % self
463
463
@@ -488,7 +488,7 @@ def load_pyproject_toml(self):
488
488
pyproject_toml_data = load_pyproject_toml (
489
489
self .use_pep517 ,
490
490
self .pyproject_toml_path ,
491
- self .setup_py ,
491
+ self .setup_py_path ,
492
492
str (self )
493
493
)
494
494
@@ -588,14 +588,14 @@ def run_egg_info(self):
588
588
if self .name :
589
589
logger .debug (
590
590
'Running setup.py (path:%s) egg_info for package %s' ,
591
- self .setup_py , self .name ,
591
+ self .setup_py_path , self .name ,
592
592
)
593
593
else :
594
594
logger .debug (
595
595
'Running setup.py (path:%s) egg_info for package from %s' ,
596
- self .setup_py , self .link ,
596
+ self .setup_py_path , self .link ,
597
597
)
598
- script = SETUPTOOLS_SHIM % self .setup_py
598
+ script = SETUPTOOLS_SHIM % self .setup_py_path
599
599
base_cmd = [sys .executable , '-c' , script ]
600
600
if self .isolated :
601
601
base_cmd += ["--no-user-cfg" ]
@@ -757,7 +757,7 @@ def install_editable(
757
757
[
758
758
sys .executable ,
759
759
'-c' ,
760
- SETUPTOOLS_SHIM % self .setup_py
760
+ SETUPTOOLS_SHIM % self .setup_py_path
761
761
] +
762
762
list (global_options ) +
763
763
['develop' , '--no-deps' ] +
@@ -1004,7 +1004,7 @@ def get_install_args(
1004
1004
# type: (...) -> List[str]
1005
1005
install_args = [sys .executable , "-u" ]
1006
1006
install_args .append ('-c' )
1007
- install_args .append (SETUPTOOLS_SHIM % self .setup_py )
1007
+ install_args .append (SETUPTOOLS_SHIM % self .setup_py_path )
1008
1008
install_args += list (global_options ) + \
1009
1009
['install' , '--record' , record_filename ]
1010
1010
install_args += ['--single-version-externally-managed' ]
0 commit comments