diff options
| author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-06-25 13:51:52 +0100 |
|---|---|---|
| committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-06-25 13:51:52 +0100 |
| commit | 700237e252e45cb465c1013fe41ad43092fccf1a (patch) | |
| tree | 88cb73c81cfcf58cf1e57cfb895b1426652aafb5 /setuptools/command/build_ext.py | |
| parent | 28f6f364442bd6cf5bfe02f462c0eb6b23a9e346 (diff) | |
| parent | 965458d1d271553d25f431ffebdb68bd12938f9a (diff) | |
| download | python-setuptools-git-700237e252e45cb465c1013fe41ad43092fccf1a.tar.gz | |
Update editable install to use get_output_mapping (#3409)
Diffstat (limited to 'setuptools/command/build_ext.py')
| -rw-r--r-- | setuptools/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/build_ext.py b/setuptools/command/build_ext.py index 31ef47bf..7ad5a87a 100644 --- a/setuptools/command/build_ext.py +++ b/setuptools/command/build_ext.py @@ -104,7 +104,7 @@ class build_ext(_build_ext): # Always copy, even if source is older than destination, to ensure # that the right extensions for the current Python/platform are # used. - build_py.copy_file(regular_file, inplace_file) + self.copy_file(regular_file, inplace_file, level=self.verbose) if ext._needs_stub: inplace_stub = self._get_equivalent_stub(ext, inplace_file) |
