File homeassistant-fix_requirements.patch of Package python-homeassistant
Index: homeassistant-0.56.0/setup.py
===================================================================
--- homeassistant-0.56.0.orig/setup.py
+++ homeassistant-0.56.0/setup.py
@@ -48,18 +48,16 @@ DOWNLOAD_URL = ('{}/archive/'
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
REQUIRES = [
- 'requests==2.18.4',
+ 'requests>=2.18.4',
'pyyaml>=3.11,<4',
'pytz>=2017.02',
- 'pip>=8.0.3',
'jinja2>=2.10',
- 'voluptuous==0.10.5',
+ 'voluptuous>=0.10.5',
- 'typing>=3,<4',
- 'aiohttp==2.3.10', # If updated, check if yarl also needs an update!
- 'yarl==1.1.0',
- 'async_timeout==2.0.0',
- 'chardet==3.0.4',
- 'astral==1.5',
+ 'aiohttp>=2.3.10', # If updated, check if yarl also needs an update!
+ 'yarl>=1.1.0',
+ 'async_timeout>=2.0.0',
+ 'chardet>=3.0.4',
+ 'astral>=1.5',
'certifi>=2017.4.17',
'attrs==17.4.0',
]