@@ -78,7 +78,7 @@ def install_package(self):
78
78
self .project .pip_cache_path ,
79
79
'.{0}' .format (extra_req_param ),
80
80
cwd = self .checkout_path ,
81
- bin_path = self .venv_bin ()
81
+ bin_path = self .venv_bin (),
82
82
)
83
83
elif self .config .python .install_with_setup :
84
84
self .build_env .run (
@@ -87,7 +87,7 @@ def install_package(self):
87
87
'install' ,
88
88
'--force' ,
89
89
cwd = self .checkout_path ,
90
- bin_path = self .venv_bin ()
90
+ bin_path = self .venv_bin (),
91
91
)
92
92
93
93
def venv_bin (self , filename = None ):
@@ -269,7 +269,7 @@ def install_core_requirements(self):
269
269
self .build_env .run (
270
270
* cmd ,
271
271
bin_path = self .venv_bin (),
272
- cwd = self .checkout_path ,
272
+ cwd = self .checkout_path # noqa - no comma here in py27 :/
273
273
)
274
274
275
275
def install_user_requirements (self ):
@@ -304,7 +304,7 @@ def install_user_requirements(self):
304
304
self .build_env .run (
305
305
* args ,
306
306
cwd = self .checkout_path ,
307
- bin_path = self .venv_bin ()
307
+ bin_path = self .venv_bin () # noqa - no comma here in py27 :/
308
308
)
309
309
310
310
@@ -368,7 +368,7 @@ def install_core_requirements(self):
368
368
cmd .extend (requirements )
369
369
self .build_env .run (
370
370
* cmd ,
371
- cwd = self .checkout_path ,
371
+ cwd = self .checkout_path # noqa - no comma here in py27 :/
372
372
)
373
373
374
374
pip_cmd = [
@@ -383,7 +383,7 @@ def install_core_requirements(self):
383
383
self .build_env .run (
384
384
* pip_cmd ,
385
385
bin_path = self .venv_bin (),
386
- cwd = self .checkout_path ,
386
+ cwd = self .checkout_path # noqa - no comma here in py27 :/
387
387
)
388
388
389
389
def install_user_requirements (self ):
0 commit comments