From 09f7ff2db3cd3820f45be4b336ae8baa8c7269a9 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 1 Aug 2022 20:08:25 +0300 Subject: [PATCH] Upgraded build engine to the SCons 4.4.0 --- HISTORY.rst | 1 + platformio/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 971d34c3..7587f549 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -18,6 +18,7 @@ PlatformIO Core 6 * Improved device port finder when using dual channel UART converter (`issue #4367 `_) * Improved project dependency resolving when using the `pio project init --ide `__ command +* Upgraded build engine to the SCons 4.4.0 (`release notes `__) * Do not resolve project dependencies on for the ``cleanall`` target (`issue #4344 `_) * Fixed an issue when escaping macros/defines for IDE integration (`issue #4360 `_) diff --git a/platformio/__init__.py b/platformio/__init__.py index 02cefd18..afd7b969 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -49,7 +49,7 @@ __default_requests_timeout__ = (10, None) # (connect, read) __core_packages__ = { "contrib-piohome": "~3.4.2", "contrib-pysite": "~2.%d%d.0" % (sys.version_info.major, sys.version_info.minor), - "tool-scons": "~4.40300.0", + "tool-scons": "~4.40400.0", "tool-cppcheck": "~1.270.0", "tool-clangtidy": "~1.120001.0", "tool-pvs-studio": "~7.18.0",