enough-analyst-54434
05/11/2021, 11:27 PME RuntimeError: Click will abort further execution because Python was configured to use ASCII as encoding for the environment. Consult <https://click.palletsprojects.com/unicode-support/> for mitigation steps.
E
E This system supports the C.UTF-8 locale which is recommended. You might be able to resolve your issue by exporting the following environment variables:
E
E export LC_ALL=C.UTF-8
E export LANG=C.UTF-8
I'm tracking down which of our plugins pulls this thing in / pinning / rigamarole.env_inherit={"PATH", "PYENV_ROOT", "HOME"}
in our black IT and that bites us here afaict. After green CI I'll follow up with a switch to expanding that and dropping the pin.hundreds-father-404
05/12/2021, 12:25 AMenv
and env_inherit
. RuleRunner()
is designed to give you total control over the env, and this would break that, right?
Instead, I think we want to add LANG
et al to the env_inherit
?enough-analyst-54434
05/12/2021, 12:30 AM