From 3e339c7304ed983b2e0813bab68ca87db3d939fd Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 6 Nov 2015 21:58:18 -0800 Subject: [PATCH] Update vincenty version in setup.py --- setup.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/setup.py b/setup.py index b9b5cdd0d5d..945138cd34b 100755 --- a/setup.py +++ b/setup.py @@ -9,22 +9,14 @@ DOWNLOAD_URL = ('https://github.com/balloob/home-assistant/archive/' PACKAGES = find_packages(exclude=['tests', 'tests.*']) -# PACKAGE_DATA = \ -# {'homeassistant.components.frontend': ['index.html.template'], -# 'homeassistant.components.frontend.www_static': ['*.*'], -# 'homeassistant.components.frontend.www_static.images': ['*.*'], -# 'homeassistant.components.mqtt': ['*.crt'], -# 'homeassistant.startup': ['*.*']} - REQUIRES = [ 'requests>=2,<3', 'pyyaml>=3.11,<4', 'pytz>=2015.4', 'pip>=7.0.0', - 'vincenty==0.1.2' + 'vincenty==0.1.3' ] - # package_data=PACKAGE_DATA, setup( name=PACKAGE_NAME, version=__version__,