From 097de2be98af533578671baa903a3ae825d90b94 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 30 Jan 2023 14:05:15 +0200 Subject: [PATCH] Do not copy PIO Core Python PATH to the global env --- platformio/platform/_run.py | 1 - 1 file changed, 1 deletion(-) diff --git a/platformio/platform/_run.py b/platformio/platform/_run.py index 79afff94..91c90931 100644 --- a/platformio/platform/_run.py +++ b/platformio/platform/_run.py @@ -102,7 +102,6 @@ class PlatformRunMixin: for key, value in variables.items(): args.append("%s=%s" % (key.upper(), self.encode_scons_arg(value))) - proc.copy_pythonpath_to_osenv() # force SCons output to Unicode os.environ["PYTHONIOENCODING"] = "utf-8"