From 406b45c6e7bea7413d2f33831a5e36c0fc565e59 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 8 Jan 2019 15:22:45 +0100 Subject: [PATCH] Upgrade bcrypt to 3.1.5 (#19854) --- 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 b06287bcf17..155a0ec6725 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -2,7 +2,7 @@ aiohttp==3.5.1 astral==1.7.1 async_timeout==3.0.1 attrs==18.2.0 -bcrypt==3.1.4 +bcrypt==3.1.5 certifi>=2018.04.16 jinja2>=2.10 PyJWT==1.6.4 diff --git a/requirements_all.txt b/requirements_all.txt index 9dbd4275389..7172a7027ef 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -3,7 +3,7 @@ aiohttp==3.5.1 astral==1.7.1 async_timeout==3.0.1 attrs==18.2.0 -bcrypt==3.1.4 +bcrypt==3.1.5 certifi>=2018.04.16 jinja2>=2.10 PyJWT==1.6.4 diff --git a/setup.py b/setup.py index 0581d7bfcfa..4457f725585 100755 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ REQUIRES = [ 'astral==1.7.1', 'async_timeout==3.0.1', 'attrs==18.2.0', - 'bcrypt==3.1.4', + 'bcrypt==3.1.5', 'certifi>=2018.04.16', 'jinja2>=2.10', 'PyJWT==1.6.4',