add config option to force --always-copy parameter for virtualenv#3157
add config option to force --always-copy parameter for virtualenv#3157abn merged 1 commit intopython-poetry:masterfrom
--always-copy parameter for virtualenv#3157Conversation
14e69f4 to
a5ae42f
Compare
|
@finswimmer LGTM. Althought, I am wondering if we should names psace this into something like |
Yes, this sounds like a good idea.
IMO that's a bit risky. I'm quite sure there will be people, who are able to create a config that will break poetry ;) So, we should carefully choose which flag we want to include. |
e7280d7 to
50b3665
Compare
fix issue for showing all configs when options has more then two level
50b3665 to
5587ffd
Compare
|
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
virtualenvuses symlink to the interpreter when creating a venv. While this reduces space and runtime this might lead to unexpected results, when the interpreter to which the symlink points get upgraded.This PR introduce a config option
virtualenvs.options.always-copy. If setting totruethe--always-copyparameter is added to virtualenv command on creating the venv.To keep the current behavior as default, this option is set to
falseby default.Pull Request Check List
Resolves: #3134