From ec2df2ca0f631fb213c4a66a119889666cb836a0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 1 Apr 2017 12:36:24 +0200 Subject: [PATCH] Upgrade pytz to 2017.02 (#6875) --- 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 e052c662e3b..a8e8df3d250 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -1,6 +1,6 @@ requests>=2,<3 pyyaml>=3.11,<4 -pytz>=2016.10 +pytz>=2017.02 pip>=7.1.0 jinja2>=2.9.5 voluptuous==0.9.3 diff --git a/requirements_all.txt b/requirements_all.txt index 94f4ecadfae..cf0d5ee646d 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1,7 +1,7 @@ # Home Assistant core requests>=2,<3 pyyaml>=3.11,<4 -pytz>=2016.10 +pytz>=2017.02 pip>=7.1.0 jinja2>=2.9.5 voluptuous==0.9.3 diff --git a/setup.py b/setup.py index 5e973790dcc..cdc4c43e7a2 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ PACKAGES = find_packages(exclude=['tests', 'tests.*']) REQUIRES = [ 'requests>=2,<3', 'pyyaml>=3.11,<4', - 'pytz>=2016.10', + 'pytz>=2017.02', 'pip>=7.1.0', 'jinja2>=2.9.5', 'voluptuous==0.9.3',