Use verbose for pylint installation

This commit is contained in:
Zanie Blue 2024-03-15 12:12:05 -05:00
parent 5cc4d77604
commit c6e1854134
1 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,8 @@ if __name__ == "__main__":
# Install the package (`pylint`). # Install the package (`pylint`).
logging.info("Installing the package `pylint`.") logging.info("Installing the package `pylint`.")
subprocess.run( subprocess.run(
[uv, "pip", "install", "pylint", "--system"] + allow_externally_managed, [uv, "pip", "install", "pylint", "--system", "--verbose"]
+ allow_externally_managed,
cwd=temp_dir, cwd=temp_dir,
check=True, check=True,
) )