From 682114d6f1a5ebba3a0838267d1640f7c06b0f26 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 31 Dec 2019 20:11:14 +0200 Subject: [PATCH] Bump version to 4.1.1b7 --- platformio/__init__.py | 2 +- platformio/managers/core.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/platformio/__init__.py b/platformio/__init__.py index dc0c5bf0..6492ea68 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -VERSION = (4, 1, "1b6") +VERSION = (4, 1, "1b7") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/managers/core.py b/platformio/managers/core.py index c90dbdb4..6166d8fe 100644 --- a/platformio/managers/core.py +++ b/platformio/managers/core.py @@ -24,7 +24,7 @@ from platformio.proc import copy_pythonpath_to_osenv, get_pythonexe_path from platformio.project.config import ProjectConfig CORE_PACKAGES = { - "contrib-piohome": ">=3.1.0-beta.8,<3.2.0", + "contrib-piohome": ">=3.1.0-rc.1,<3.2.0", "contrib-pysite": "~2.%d%d.0" % (sys.version_info[0], sys.version_info[1]), "tool-pioplus": "^2.6.1", "tool-unity": "~1.20403.0",