mirror of
https://github.com/home-assistant/core.git
synced 2025-07-12 15:57:06 +00:00
Upgrade aiohttp to 3.2.1 (#14517)
* Upgrade aiohttp to 3.2.1 * Upgrade async_timeout to 3.0.0 * Update the order of the requirements
This commit is contained in:
parent
e55f7ebf81
commit
54dfe045b2
@ -1,15 +1,15 @@
|
|||||||
requests==2.18.4
|
aiohttp==3.2.1
|
||||||
pyyaml>=3.11,<4
|
|
||||||
pytz>=2018.04
|
|
||||||
pip>=8.0.3
|
|
||||||
jinja2>=2.10
|
|
||||||
voluptuous==0.11.1
|
|
||||||
typing>=3,<4
|
|
||||||
aiohttp==3.1.3
|
|
||||||
async_timeout==2.0.1
|
|
||||||
astral==1.6.1
|
astral==1.6.1
|
||||||
certifi>=2018.04.16
|
async_timeout==3.0.0
|
||||||
attrs==18.1.0
|
attrs==18.1.0
|
||||||
|
certifi>=2018.04.16
|
||||||
|
jinja2>=2.10
|
||||||
|
pip>=8.0.3
|
||||||
|
pytz>=2018.04
|
||||||
|
pyyaml>=3.11,<4
|
||||||
|
requests==2.18.4
|
||||||
|
typing>=3,<4
|
||||||
|
voluptuous==0.11.1
|
||||||
|
|
||||||
# Breaks Python 3.6 and is not needed for our supported Python versions
|
# Breaks Python 3.6 and is not needed for our supported Python versions
|
||||||
enum34==1000000000.0.0
|
enum34==1000000000.0.0
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
# Home Assistant core
|
# Home Assistant core
|
||||||
requests==2.18.4
|
aiohttp==3.2.1
|
||||||
pyyaml>=3.11,<4
|
|
||||||
pytz>=2018.04
|
|
||||||
pip>=8.0.3
|
|
||||||
jinja2>=2.10
|
|
||||||
voluptuous==0.11.1
|
|
||||||
typing>=3,<4
|
|
||||||
aiohttp==3.1.3
|
|
||||||
async_timeout==2.0.1
|
|
||||||
astral==1.6.1
|
astral==1.6.1
|
||||||
certifi>=2018.04.16
|
async_timeout==3.0.0
|
||||||
attrs==18.1.0
|
attrs==18.1.0
|
||||||
|
certifi>=2018.04.16
|
||||||
|
jinja2>=2.10
|
||||||
|
pip>=8.0.3
|
||||||
|
pytz>=2018.04
|
||||||
|
pyyaml>=3.11,<4
|
||||||
|
requests==2.18.4
|
||||||
|
typing>=3,<4
|
||||||
|
voluptuous==0.11.1
|
||||||
|
|
||||||
# homeassistant.components.nuimo_controller
|
# homeassistant.components.nuimo_controller
|
||||||
--only-binary=all https://github.com/getSenic/nuimo-linux-python/archive/29fc42987f74d8090d0e2382e8f248ff5990b8c9.zip#nuimo==1.0.0
|
--only-binary=all https://github.com/getSenic/nuimo-linux-python/archive/29fc42987f74d8090d0e2382e8f248ff5990b8c9.zip#nuimo==1.0.0
|
||||||
|
20
setup.py
20
setup.py
@ -42,18 +42,18 @@ DOWNLOAD_URL = '{}/archive/{}.zip'.format(GITHUB_URL, hass_const.__version__)
|
|||||||
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
|
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
|
||||||
|
|
||||||
REQUIRES = [
|
REQUIRES = [
|
||||||
'requests==2.18.4',
|
'aiohttp==3.2.1',
|
||||||
'pyyaml>=3.11,<4',
|
|
||||||
'pytz>=2018.04',
|
|
||||||
'pip>=8.0.3',
|
|
||||||
'jinja2>=2.10',
|
|
||||||
'voluptuous==0.11.1',
|
|
||||||
'typing>=3,<4',
|
|
||||||
'aiohttp==3.1.3',
|
|
||||||
'async_timeout==2.0.1',
|
|
||||||
'astral==1.6.1',
|
'astral==1.6.1',
|
||||||
'certifi>=2018.04.16',
|
'async_timeout==3.0.0',
|
||||||
'attrs==18.1.0',
|
'attrs==18.1.0',
|
||||||
|
'certifi>=2018.04.16',
|
||||||
|
'jinja2>=2.10',
|
||||||
|
'pip>=8.0.3',
|
||||||
|
'pytz>=2018.04',
|
||||||
|
'pyyaml>=3.11,<4',
|
||||||
|
'requests==2.18.4',
|
||||||
|
'typing>=3,<4',
|
||||||
|
'voluptuous==0.11.1',
|
||||||
]
|
]
|
||||||
|
|
||||||
MIN_PY_VERSION = '.'.join(map(str, hass_const.REQUIRED_PYTHON_VER))
|
MIN_PY_VERSION = '.'.join(map(str, hass_const.REQUIRED_PYTHON_VER))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user