mach: Don't print anything when deps are up-to-date (#31128)

I added this print statement, but after using `mach` for a while with
it, I think it is far too chatty. This change just removes the line.
Information is only printed when dependencies are installed.
This commit is contained in:
Martin Robinson 2024-01-18 20:05:41 +01:00 committed by GitHub
parent 729f40d1e0
commit 0c8e74dcec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -141,8 +141,6 @@ def install_virtual_env_requirements(project_path: str, python: str, virtualenv_
"-r", requirements_paths[2]])
with open(marker_path, "w") as marker_file:
marker_file.write(requirements_hash)
else:
print(" * Python requirements up to date.")
def _activate_virtualenv(topdir):