1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-18 19:22:22 +01:00

Allow framework version validator to be maximum version (#3197)

This commit is contained in:
Jesse Hills
2022-02-15 11:57:47 +13:00
committed by GitHub
parent 0ec84be5da
commit a13a1225b7
3 changed files with 39 additions and 10 deletions

View File

@@ -49,7 +49,12 @@ CONFIG_SCHEMA = cv.All(
}
),
_validate,
cv.only_with_arduino,
cv.require_framework_version(
esp8266_arduino=cv.Version(2, 7, 4),
esp32_arduino=cv.Version(99, 0, 0),
max_version=True,
extra_message="Please see note on documentation for FastLED",
),
)