From f98525acbfc8517d5b6aaac881a4e0573d5757a1 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 4 May 2018 14:58:34 +0200 Subject: [PATCH] Upgrade attrs to 18.1.0 (#14281) --- homeassistant/package_constraints.txt | 2 +- requirements_all.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index 6de885942fb..0f3c9ac255d 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -9,7 +9,7 @@ aiohttp==3.1.3 async_timeout==2.0.1 astral==1.6 certifi>=2017.4.17 -attrs==17.4.0 +attrs==18.1.0 # Breaks Python 3.6 and is not needed for our supported Python versions enum34==1000000000.0.0 diff --git a/requirements_all.txt b/requirements_all.txt index 99917ef9e35..002c5eb93e2 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -10,7 +10,7 @@ aiohttp==3.1.3 async_timeout==2.0.1 astral==1.6 certifi>=2017.4.17 -attrs==17.4.0 +attrs==18.1.0 # homeassistant.components.nuimo_controller --only-binary=all https://github.com/getSenic/nuimo-linux-python/archive/29fc42987f74d8090d0e2382e8f248ff5990b8c9.zip#nuimo==1.0.0 diff --git a/setup.py b/setup.py index 8815b0227ad..3db7c737a2c 100755 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ REQUIRES = [ 'async_timeout==2.0.1', 'astral==1.6', 'certifi>=2017.4.17', - 'attrs==17.4.0', + 'attrs==18.1.0', ] MIN_PY_VERSION = '.'.join(map(str, hass_const.REQUIRED_PYTHON_VER))