File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -425,14 +425,16 @@ def build_python(dist_dir, python_packages):
425
425
@add_options (check_imports_options )
426
426
@add_options (pydist_check_options )
427
427
@use_checkout_dir ()
428
- def check_python (dist_dir , check_imports , check_cmd ):
428
+ def check_python (dist_dir , check_imports , pydist_check_cmd ):
429
429
"""Check Python dist files"""
430
430
for dist_file in glob (f"{ dist_dir } /*" ):
431
431
if Path (dist_file ).suffix not in [".gz" , ".whl" ]:
432
432
util .log (f"Skipping non-python dist file { dist_file } " )
433
433
continue
434
434
435
- python .check_dist (dist_file , python_imports = check_imports , check_cmd = check_cmd )
435
+ python .check_dist (
436
+ dist_file , python_imports = check_imports , check_cmd = pydist_check_cmd
437
+ )
436
438
437
439
438
440
@main .command ()
You can’t perform that action at this time.
0 commit comments