mirror of
https://github.com/esphome/esphome.git
synced 2024-11-07 09:31:10 +01:00
Update esp32 esp-idf dev and latest version numbers (#4479)
This commit is contained in:
parent
4d674392e8
commit
6ec18fc630
@ -178,8 +178,8 @@ ESP_IDF_PLATFORM_VERSION = cv.Version(5, 3, 0)
|
|||||||
def _arduino_check_versions(value):
|
def _arduino_check_versions(value):
|
||||||
value = value.copy()
|
value = value.copy()
|
||||||
lookups = {
|
lookups = {
|
||||||
"dev": (cv.Version(2, 0, 5), "https://github.com/espressif/arduino-esp32.git"),
|
"dev": (cv.Version(2, 1, 0), "https://github.com/espressif/arduino-esp32.git"),
|
||||||
"latest": (cv.Version(2, 0, 5), None),
|
"latest": (cv.Version(2, 0, 7), None),
|
||||||
"recommended": (RECOMMENDED_ARDUINO_FRAMEWORK_VERSION, None),
|
"recommended": (RECOMMENDED_ARDUINO_FRAMEWORK_VERSION, None),
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -213,8 +213,8 @@ def _arduino_check_versions(value):
|
|||||||
def _esp_idf_check_versions(value):
|
def _esp_idf_check_versions(value):
|
||||||
value = value.copy()
|
value = value.copy()
|
||||||
lookups = {
|
lookups = {
|
||||||
"dev": (cv.Version(5, 0, 0), "https://github.com/espressif/esp-idf.git"),
|
"dev": (cv.Version(5, 1, 0), "https://github.com/espressif/esp-idf.git"),
|
||||||
"latest": (cv.Version(4, 4, 2), None),
|
"latest": (cv.Version(5, 0, 1), None),
|
||||||
"recommended": (RECOMMENDED_ESP_IDF_FRAMEWORK_VERSION, None),
|
"recommended": (RECOMMENDED_ESP_IDF_FRAMEWORK_VERSION, None),
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -531,7 +531,6 @@ def copy_files():
|
|||||||
components: dict = CORE.data[KEY_ESP32][KEY_COMPONENTS]
|
components: dict = CORE.data[KEY_ESP32][KEY_COMPONENTS]
|
||||||
|
|
||||||
for name, component in components.items():
|
for name, component in components.items():
|
||||||
|
|
||||||
repo_dir, _ = git.clone_or_update(
|
repo_dir, _ = git.clone_or_update(
|
||||||
url=component[KEY_REPO],
|
url=component[KEY_REPO],
|
||||||
ref=component[KEY_REF],
|
ref=component[KEY_REF],
|
||||||
|
Loading…
Reference in New Issue
Block a user