Remove a spurious debug print in Python module

This prints many lines of unwanted "done /absolute/path",
I noticed this when testing 0.62.0rc1 with SciPy.

[ci skip]
pull/10109/head
Ralf Gommers 3 years ago committed by Xavier Claessens
parent cec7d491f9
commit 44104e820a
  1. 1
      mesonbuild/modules/python.py

@ -414,7 +414,6 @@ class PythonExternalProgram(ExternalProgram):
if subdir_parts[-len(install_subdir_parts):] == install_subdir_parts:
pypath = os.path.join(basedir, *subdir_parts[:-len(install_subdir_parts)])
self.devenv_pythonpath.add(pypath)
print('done', pypath)
def _check_version(self, version: str) -> bool:
if self.name == 'python2':

Loading…
Cancel
Save