diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2022-01-03 12:44:56 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-01-03 12:44:56 -0500 |
| commit | b028d4636e6a9cb1737758f42f321340bf5abc25 (patch) | |
| tree | b125ab1e462f5b2dd6399d3c6fa2ee738956e3c3 /setuptools | |
| parent | 14c6daf55f41e4a2c2544578519fa68ba4ce6d72 (diff) | |
| download | python-setuptools-git-b028d4636e6a9cb1737758f42f321340bf5abc25.tar.gz | |
Use 'dict()' instead of '.copy()', for compatibility with DictStack.
Diffstat (limited to 'setuptools')
| -rw-r--r-- | setuptools/command/easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index fb34d10e..aad5794a 100644 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1350,7 +1350,7 @@ class easy_install(Command): if self.prefix: # Set default install_dir/scripts from --prefix - config_vars = config_vars.copy() + config_vars = dict(config_vars) config_vars['base'] = self.prefix scheme = self.INSTALL_SCHEMES.get(os.name, self.DEFAULT_SCHEME) for attr, val in scheme.items(): |
