1
0
mirror of https://github.com/esphome/esphome.git synced 2025-06-18 06:15:46 +01:00

Bump platformio to 6.0.2 ()

This commit is contained in:
Jesse Hills
2022-06-21 11:53:51 +12:00
committed by GitHub
parent 01b3815f27
commit 311a48c64e
3 changed files with 4 additions and 6 deletions

@ -46,12 +46,10 @@ RUN \
# Ubuntu python3-pip is missing wheel # Ubuntu python3-pip is missing wheel
pip3 install --no-cache-dir \ pip3 install --no-cache-dir \
wheel==0.37.1 \ wheel==0.37.1 \
platformio==5.2.5 \ platformio==6.0.2 \
# Change some platformio settings # Change some platformio settings
&& platformio settings set enable_telemetry No \ && platformio settings set enable_telemetry No \
&& platformio settings set check_libraries_interval 1000000 \
&& platformio settings set check_platformio_interval 1000000 \ && platformio settings set check_platformio_interval 1000000 \
&& platformio settings set check_platforms_interval 1000000 \
&& mkdir -p /piolibs && mkdir -p /piolibs

@ -20,7 +20,7 @@ def patch_structhash():
# removed/added. This might have unintended consequences, but this improves compile # removed/added. This might have unintended consequences, but this improves compile
# times greatly when adding/removing components and a simple clean build solves # times greatly when adding/removing components and a simple clean build solves
# all issues # all issues
from platformio.commands.run import helpers, command from platformio.run import helpers, cli
from os.path import join, isdir, getmtime from os.path import join, isdir, getmtime
from os import makedirs from os import makedirs
@ -39,7 +39,7 @@ def patch_structhash():
# pylint: disable=protected-access # pylint: disable=protected-access
helpers.clean_build_dir = patched_clean_build_dir helpers.clean_build_dir = patched_clean_build_dir
command.clean_build_dir = patched_clean_build_dir cli.clean_build_dir = patched_clean_build_dir
IGNORE_LIB_WARNINGS = f"(?:{'|'.join(['Hash', 'Update'])})" IGNORE_LIB_WARNINGS = f"(?:{'|'.join(['Hash', 'Update'])})"

@ -6,7 +6,7 @@ tornado==6.1
tzlocal==4.2 # from time tzlocal==4.2 # from time
tzdata>=2021.1 # from time tzdata>=2021.1 # from time
pyserial==3.5 pyserial==3.5
platformio==5.2.5 # When updating platformio, also update Dockerfile platformio==6.0.2 # When updating platformio, also update Dockerfile
esptool==3.3.1 esptool==3.3.1
click==8.1.3 click==8.1.3
esphome-dashboard==20220508.0 esphome-dashboard==20220508.0