From e79de0108cb722ad070ddfe3da174084c9575774 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 20 Jan 2021 16:15:05 +0200 Subject: [PATCH] Upgraded build engine to the SCons 4.1 --- HISTORY.rst | 1 + platformio/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 0bca88c8..858f102c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -14,6 +14,7 @@ PlatformIO Core 5 * Significantly speedup PlatformIO Home loading time by migrating to native Python 3 Asynchronous I/O * Improved listing of `multicast DNS services `_ * Check for debug server's "ready_pattern" in "stderr" +* Upgraded build engine to the SCons 4.1 (`release notes `_) 5.0.4 (2020-12-30) ~~~~~~~~~~~~~~~~~~ diff --git a/platformio/__init__.py b/platformio/__init__.py index 99a13111..21edc5e7 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -50,7 +50,7 @@ __core_packages__ = { "contrib-piohome": "~3.3.1", "contrib-pysite": "~2.%d%d.0" % (sys.version_info.major, sys.version_info.minor), "tool-unity": "~1.20500.0", - "tool-scons": "~2.20501.7" if sys.version_info.major == 2 else "~4.40001.0", + "tool-scons": "~2.20501.7" if sys.version_info.major == 2 else "~4.40100.0", "tool-cppcheck": "~1.230.0", "tool-clangtidy": "~1.100000.0", "tool-pvs-studio": "~7.11.0",