From 3ceee66e1b032528214cf05bbb8dd1c7e4ddd079 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 17 Jun 2018 19:13:39 +0200 Subject: [PATCH] Remove typing (#15018) --- homeassistant/package_constraints.txt | 1 - requirements_all.txt | 1 - setup.py | 1 - 3 files changed, 3 deletions(-) diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index c69e9eb4af4..854fe5c2497 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -8,7 +8,6 @@ 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 diff --git a/requirements_all.txt b/requirements_all.txt index b8cbc03b1bf..25c9dd7cd20 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -9,7 +9,6 @@ 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 diff --git a/setup.py b/setup.py index a4d15feb7fc..5a171512a7c 100755 --- a/setup.py +++ b/setup.py @@ -52,7 +52,6 @@ REQUIRES = [ 'pytz>=2018.04', 'pyyaml>=3.11,<4', 'requests==2.18.4', - 'typing>=3,<4', 'voluptuous==0.11.1', ]