From b1577d101cbc8e9539a6adf24524cedc67fe1b33 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 13 Nov 2019 15:32:57 +0200 Subject: [PATCH] Update PIO Home to 3.0.1 --- platformio/commands/home/rpc/handlers/misc.py | 2 +- platformio/managers/core.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/platformio/commands/home/rpc/handlers/misc.py b/platformio/commands/home/rpc/handlers/misc.py index 7458500e..d1851d13 100644 --- a/platformio/commands/home/rpc/handlers/misc.py +++ b/platformio/commands/home/rpc/handlers/misc.py @@ -23,7 +23,7 @@ from platformio.commands.home.rpc.handlers.os import OSRPC class MiscRPC(object): def load_latest_tweets(self, data_url): - cache_key = app.ContentCache.key_from_args(data_url) + cache_key = app.ContentCache.key_from_args(data_url, "tweets") cache_valid = "7d" with app.ContentCache() as cc: cache_data = cc.get(cache_key) diff --git a/platformio/managers/core.py b/platformio/managers/core.py index 1f8142b1..59700f22 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.0.0", + "contrib-piohome": "~3.0.1", "contrib-pysite": "~2.%d%d.0" % (sys.version_info[0], sys.version_info[1]), "tool-pioplus": "^2.6.0", "tool-unity": "~1.20403.0",