Improved PIO Remote setup on credit-card sized computers (Raspberry Pi, BeagleBon, etc) // Resolve #3865

This commit is contained in:
Ivan Kravets
2022-02-11 14:42:17 +02:00
parent 63feda6efc
commit 526abc6a9f
2 changed files with 2 additions and 2 deletions

View File

@ -13,6 +13,7 @@ PlatformIO Core 5
- Run command from a PlatformIO package with a new `pio exec <https://docs.platformio.org/en/latest/core/userguide/cmd_exec.html>`__ (`issue #4163 <https://github.com/platformio/platformio-core/issues/4163>`_)
- Run library extra script only at a build process (`issue #3915 <https://github.com/platformio/platformio-core/issues/3915>`_)
- Improved PIO Remote setup on credit-card sized computers (Raspberry Pi, BeagleBon, etc) (`issue #3865 <https://github.com/platformio/platformio-core/issues/3865>`_)
5.2.5 (2022-02-10)
~~~~~~~~~~~~~~~~~~
@ -29,7 +30,6 @@ PlatformIO Core 5
- Added support for a new ``headers`` field in `library.json <https://docs.platformio.org/en/latest/librarymanager/config.html>`__ (declare a list of header files that can be included in a project source files using ``#include <...>`` directive)
- Improved tab completion support for Bash, ZSH, and Fish shells (`issue #4114 <https://github.com/platformio/platformio-core/issues/4114>`_)
- Improved support for projects located on a network share (`issue #3417 <https://github.com/platformio/platformio-core/issues/3417>`_, `issue #3926 <https://github.com/platformio/platformio-core/issues/3926>`_, `issue #4099 <https://github.com/platformio/platformio-core/issues/4099>`_)
- Improved PIO Remote setup on credit-card sized computers (Raspberry Pi, BeagleBon, etc) (`issue #3865 <https://github.com/platformio/platformio-core/issues/3865>`_)
- Upgraded build engine to the SCons 4.3 (`release notes <https://github.com/SCons/scons/blob/rel_4.3.0/CHANGES.txt>`__)
- Fixed an issue with the CLion project generator when a macro contains a space (`issue #4102 <https://github.com/platformio/platformio-core/issues/4102>`_)
- Fixed an issue with the NetBeans project generator when the path to PlatformIO contains a space (`issue #4096 <https://github.com/platformio/platformio-core/issues/4096>`_)

View File

@ -152,7 +152,7 @@ def build_contrib_pysite_package(target_dir, with_metadata=True):
if "linux" in systype:
args.extend(["--no-binary", ":all:"])
try:
subprocess.run(args + get_contrib_pysite_deps(), check=True)
subprocess.run(args + get_contrib_pysite_deps(), check=True, env=os.environ)
except subprocess.CalledProcessError as exc:
if "linux" in systype:
raise UserSideException(