Add httpx as a core dep (#42071)
parent
77b95ae8a1
commit
8949eb2442
|
@ -2,6 +2,6 @@
|
||||||
"domain": "rest",
|
"domain": "rest",
|
||||||
"name": "RESTful",
|
"name": "RESTful",
|
||||||
"documentation": "https://www.home-assistant.io/integrations/rest",
|
"documentation": "https://www.home-assistant.io/integrations/rest",
|
||||||
"requirements": ["jsonpath==0.82", "xmltodict==0.12.0", "httpx==0.16.1"],
|
"requirements": ["jsonpath==0.82", "xmltodict==0.12.0"],
|
||||||
"codeowners": []
|
"codeowners": []
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,7 @@ distro==1.5.0
|
||||||
emoji==0.5.4
|
emoji==0.5.4
|
||||||
hass-nabucasa==0.37.1
|
hass-nabucasa==0.37.1
|
||||||
home-assistant-frontend==20201001.2
|
home-assistant-frontend==20201001.2
|
||||||
|
httpx==0.16.1
|
||||||
importlib-metadata==1.6.0;python_version<'3.8'
|
importlib-metadata==1.6.0;python_version<'3.8'
|
||||||
jinja2>=2.11.2
|
jinja2>=2.11.2
|
||||||
netdisco==2.8.2
|
netdisco==2.8.2
|
||||||
|
|
|
@ -8,6 +8,7 @@ attrs==19.3.0
|
||||||
bcrypt==3.1.7
|
bcrypt==3.1.7
|
||||||
certifi>=2020.6.20
|
certifi>=2020.6.20
|
||||||
ciso8601==2.1.3
|
ciso8601==2.1.3
|
||||||
|
httpx==0.16.1
|
||||||
importlib-metadata==1.6.0;python_version<'3.8'
|
importlib-metadata==1.6.0;python_version<'3.8'
|
||||||
jinja2>=2.11.2
|
jinja2>=2.11.2
|
||||||
PyJWT==1.7.1
|
PyJWT==1.7.1
|
||||||
|
|
|
@ -774,9 +774,6 @@ horimote==0.4.1
|
||||||
# homeassistant.components.remember_the_milk
|
# homeassistant.components.remember_the_milk
|
||||||
httplib2==0.10.3
|
httplib2==0.10.3
|
||||||
|
|
||||||
# homeassistant.components.rest
|
|
||||||
httpx==0.16.1
|
|
||||||
|
|
||||||
# homeassistant.components.huawei_lte
|
# homeassistant.components.huawei_lte
|
||||||
huawei-lte-api==1.4.12
|
huawei-lte-api==1.4.12
|
||||||
|
|
||||||
|
|
|
@ -397,9 +397,6 @@ homematicip==0.11.0
|
||||||
# homeassistant.components.remember_the_milk
|
# homeassistant.components.remember_the_milk
|
||||||
httplib2==0.10.3
|
httplib2==0.10.3
|
||||||
|
|
||||||
# homeassistant.components.rest
|
|
||||||
httpx==0.16.1
|
|
||||||
|
|
||||||
# homeassistant.components.huawei_lte
|
# homeassistant.components.huawei_lte
|
||||||
huawei-lte-api==1.4.12
|
huawei-lte-api==1.4.12
|
||||||
|
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -39,6 +39,7 @@ REQUIRES = [
|
||||||
"bcrypt==3.1.7",
|
"bcrypt==3.1.7",
|
||||||
"certifi>=2020.6.20",
|
"certifi>=2020.6.20",
|
||||||
"ciso8601==2.1.3",
|
"ciso8601==2.1.3",
|
||||||
|
"httpx==0.16.1",
|
||||||
"importlib-metadata==1.6.0;python_version<'3.8'",
|
"importlib-metadata==1.6.0;python_version<'3.8'",
|
||||||
"jinja2>=2.11.2",
|
"jinja2>=2.11.2",
|
||||||
"PyJWT==1.7.1",
|
"PyJWT==1.7.1",
|
||||||
|
|
Loading…
Reference in New Issue