From 7d90c468ae8d7ebaba181eda06f240901ac9037a Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sun, 22 Dec 2019 01:27:51 +0200 Subject: [PATCH] Updated SCons tool to 3.1.2 --- HISTORY.rst | 1 + docs | 2 +- platformio/managers/core.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 290a04f4..a1550302 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -15,6 +15,7 @@ PlatformIO Core 4.0 - Project Configuration UI for `"platformio.ini" `__ * Handle project configuration (monitor, test, and upload options) for PIO Remote commands (`issue #2591 `_) +* Updated SCons tool to 3.1.2 * Warn about broken library manifest when scanning dependencies (`issue #3268 `_) * Fixed an issue when ``env.BoardConfig()`` does not work for custom boards in extra scripts of libraries (`issue #3264 `_) * Fixed an issue with "start-group/end-group" linker flags on Native development platform (`issue #3282 `_) diff --git a/docs b/docs index c25f5d45..b4e4f10e 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit c25f5d453c2dfd1bb3ac82c107082c0ed52179bb +Subproject commit b4e4f10e4d40783c6e2d15e3e33b984d619c26f9 diff --git a/platformio/managers/core.py b/platformio/managers/core.py index d1edb2c3..4703de92 100644 --- a/platformio/managers/core.py +++ b/platformio/managers/core.py @@ -28,7 +28,7 @@ CORE_PACKAGES = { "contrib-pysite": "~2.%d%d.0" % (sys.version_info[0], sys.version_info[1]), "tool-pioplus": "^2.6.1", "tool-unity": "~1.20403.0", - "tool-scons": "~2.20501.7" if PY2 else "~3.30101.0", + "tool-scons": "~2.20501.7" if PY2 else "~3.30102.0", "tool-cppcheck": "~1.189.0", "tool-clangtidy": "^1.80000.0", }