diff options
| author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-08-11 18:09:52 +0100 |
|---|---|---|
| committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-08-11 18:09:52 +0100 |
| commit | ae7662f1019b5bfdfba43a70a774eca37597731f (patch) | |
| tree | 04a45514903967bd39c3faecf7e9b9fc03e07a7a /setuptools/command | |
| parent | 8b663815fd7cb5d78fb9ba13f93d6dd4ee4ebc0b (diff) | |
| download | python-setuptools-git-ae7662f1019b5bfdfba43a70a774eca37597731f.tar.gz | |
editable_install: Fix missing dry-run for legacy namespaces
Diffstat (limited to 'setuptools/command')
| -rw-r--r-- | setuptools/command/editable_wheel.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/command/editable_wheel.py b/setuptools/command/editable_wheel.py index eb86f2b9..eb79608b 100644 --- a/setuptools/command/editable_wheel.py +++ b/setuptools/command/editable_wheel.py @@ -672,6 +672,7 @@ class _NamespaceInstaller(namespaces.Installer): self.installation_dir = installation_dir self.editable_name = editable_name self.outputs = [] + self.dry_run = False def _get_target(self): """Installation target.""" |
