mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	http_request version fix (#917)
This commit is contained in:
		
				
					committed by
					
						 Otto Winter
						Otto Winter
					
				
			
			
				
	
			
			
			
						parent
						
							7c870556c6
						
					
				
				
					commit
					05f9dede70
				
			| @@ -4,7 +4,7 @@ import esphome.codegen as cg | |||||||
| import esphome.config_validation as cv | import esphome.config_validation as cv | ||||||
| from esphome import automation | from esphome import automation | ||||||
| from esphome.const import CONF_ID, CONF_TIMEOUT, CONF_ESPHOME, CONF_METHOD, \ | from esphome.const import CONF_ID, CONF_TIMEOUT, CONF_ESPHOME, CONF_METHOD, \ | ||||||
|     CONF_ARDUINO_VERSION, ARDUINO_VERSION_ESP8266_2_5_0 |     CONF_ARDUINO_VERSION, ARDUINO_VERSION_ESP8266_2_5_1 | ||||||
| from esphome.core import CORE, Lambda | from esphome.core import CORE, Lambda | ||||||
| from esphome.core_config import PLATFORMIO_ESP8266_LUT | from esphome.core_config import PLATFORMIO_ESP8266_LUT | ||||||
|  |  | ||||||
| @@ -35,8 +35,8 @@ def validate_framework(config): | |||||||
|         return config |         return config | ||||||
|  |  | ||||||
|     framework = PLATFORMIO_ESP8266_LUT[version] if version in PLATFORMIO_ESP8266_LUT else version |     framework = PLATFORMIO_ESP8266_LUT[version] if version in PLATFORMIO_ESP8266_LUT else version | ||||||
|     if framework < ARDUINO_VERSION_ESP8266_2_5_0: |     if framework < ARDUINO_VERSION_ESP8266_2_5_1: | ||||||
|         raise cv.Invalid('This component is not supported on arduino framework version below 2.5.0') |         raise cv.Invalid('This component is not supported on arduino framework version below 2.5.1') | ||||||
|     return config |     return config | ||||||
|  |  | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user