Upgrade aiohttp to 3.0.7 (#13119)
This commit is contained in:
parent
890197e407
commit
02ad9c3574
3 changed files with 4 additions and 7 deletions
|
@ -5,7 +5,7 @@ pip>=8.0.3
|
||||||
jinja2>=2.10
|
jinja2>=2.10
|
||||||
voluptuous==0.11.1
|
voluptuous==0.11.1
|
||||||
typing>=3,<4
|
typing>=3,<4
|
||||||
aiohttp==3.0.6
|
aiohttp==3.0.7
|
||||||
async_timeout==2.0.0
|
async_timeout==2.0.0
|
||||||
astral==1.5
|
astral==1.5
|
||||||
certifi>=2017.4.17
|
certifi>=2017.4.17
|
||||||
|
|
|
@ -6,7 +6,7 @@ pip>=8.0.3
|
||||||
jinja2>=2.10
|
jinja2>=2.10
|
||||||
voluptuous==0.11.1
|
voluptuous==0.11.1
|
||||||
typing>=3,<4
|
typing>=3,<4
|
||||||
aiohttp==3.0.6
|
aiohttp==3.0.7
|
||||||
async_timeout==2.0.0
|
async_timeout==2.0.0
|
||||||
astral==1.5
|
astral==1.5
|
||||||
certifi>=2017.4.17
|
certifi>=2017.4.17
|
||||||
|
|
7
setup.py
7
setup.py
|
@ -4,7 +4,6 @@ from setuptools import setup, find_packages
|
||||||
|
|
||||||
import homeassistant.const as hass_const
|
import homeassistant.const as hass_const
|
||||||
|
|
||||||
|
|
||||||
PROJECT_NAME = 'Home Assistant'
|
PROJECT_NAME = 'Home Assistant'
|
||||||
PROJECT_PACKAGE_NAME = 'homeassistant'
|
PROJECT_PACKAGE_NAME = 'homeassistant'
|
||||||
PROJECT_LICENSE = 'Apache License 2.0'
|
PROJECT_LICENSE = 'Apache License 2.0'
|
||||||
|
@ -50,16 +49,14 @@ REQUIRES = [
|
||||||
'jinja2>=2.10',
|
'jinja2>=2.10',
|
||||||
'voluptuous==0.11.1',
|
'voluptuous==0.11.1',
|
||||||
'typing>=3,<4',
|
'typing>=3,<4',
|
||||||
'aiohttp==3.0.6',
|
'aiohttp==3.0.7',
|
||||||
'async_timeout==2.0.0',
|
'async_timeout==2.0.0',
|
||||||
'astral==1.5',
|
'astral==1.5',
|
||||||
'certifi>=2017.4.17',
|
'certifi>=2017.4.17',
|
||||||
'attrs==17.4.0',
|
'attrs==17.4.0',
|
||||||
]
|
]
|
||||||
|
|
||||||
MIN_PY_VERSION = '.'.join(map(
|
MIN_PY_VERSION = '.'.join(map(str, hass_const.REQUIRED_PYTHON_VER))
|
||||||
str,
|
|
||||||
hass_const.REQUIRED_PYTHON_VER))
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=PROJECT_PACKAGE_NAME,
|
name=PROJECT_PACKAGE_NAME,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue