1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-20 02:18:59 +00:00

Fix bugs with docker api 3.0.1 and fix the version (#353)

* Fix version

* fix snapshot
This commit is contained in:
Pascal Vizeli
2018-02-11 01:42:53 +01:00
committed by GitHub
parent 3bf446cbdb
commit 2f3701693d
2 changed files with 16 additions and 11 deletions

View File

@@ -40,13 +40,13 @@ setup(
],
include_package_data=True,
install_requires=[
'async_timeout',
'aiohttp',
'docker',
'colorlog',
'voluptuous',
'gitpython',
'pytz',
'pyudev'
'async_timeout==2.0.0',
'aiohttp==2.3.10',
'docker==3.0.1',
'colorlog==3.1.2',
'voluptuous==0.10.5',
'gitpython==2.1.8',
'pytz==2018.3',
'pyudev==0.21.0'
]
)