Update and pin all requirements (#759)

This commit is contained in:
Otto Winter 2019-10-17 18:23:39 +02:00 committed by GitHub
parent 78c1adafcd
commit 35a725fa1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 36 deletions

View File

@ -1,14 +1,13 @@
voluptuous==0.11.7 voluptuous==0.11.7
PyYAML>=5.1,<6 PyYAML==5.1.2
paho-mqtt>=1.4,<2 paho-mqtt==1.4.0
colorlog>=4.0.2 colorlog==4.0.2
tornado>=5.1.1,<6 tornado==5.1.1
typing>=3.6.6;python_version<"3.5" typing>=3.6.6;python_version<"3.5"
protobuf>=3.7,<3.8 protobuf==3.10.0
tzlocal>=1.5.1 tzlocal==2.0.0
pytz>=2019.1 pytz==2019.3
pyserial>=3.4,<4 pyserial==3.4
ifaddr>=0.1.6,<1 ifaddr==0.1.6
platformio>=3.6.5 ; python_version<"3" platformio==4.0.3
https://github.com/platformio/platformio-core/archive/develop.zip ; python_version>"3" esptool==2.7
esptool>=2.6,<3

View File

@ -1,17 +1,17 @@
voluptuous==0.11.7 voluptuous==0.11.7
PyYAML>=5.1,<6 PyYAML==5.1.2
paho-mqtt>=1.4,<2 paho-mqtt==1.4.0
colorlog>=4.0.2 colorlog==4.0.2
tornado>=5.1.1,<6 tornado==5.1.1
typing>=3.6.6 ; python_version<"3.5" typing>=3.6.6;python_version<"3.5"
protobuf>=3.7,<3.8 protobuf==3.10.0
tzlocal>=1.5.1 tzlocal==2.0.0
pytz>=2019.1 pytz==2019.3
pyserial>=3.4,<4 pyserial==3.4
ifaddr>=0.1.6,<1 ifaddr==0.1.6
platformio>=3.6.7 ; python_version<"3" platformio==4.0.3
https://github.com/platformio/platformio-core/archive/develop.zip ; python_version>"3" esptool==2.7
esptool>=2.6,<3
pylint==1.9.4 ; python_version<"3" pylint==1.9.4 ; python_version<"3"
pylint==2.3.0 ; python_version>"3" pylint==2.3.0 ; python_version>"3"
flake8==3.6.0 flake8==3.6.0

View File

@ -24,16 +24,16 @@ DOWNLOAD_URL = '{}/archive/v{}.zip'.format(GITHUB_URL, const.__version__)
REQUIRES = [ REQUIRES = [
'voluptuous==0.11.7', 'voluptuous==0.11.7',
'PyYAML>=5.1,<6', 'PyYAML==5.1.2',
'paho-mqtt>=1.4,<2', 'paho-mqtt==1.4.0',
'colorlog>=4.0.2', 'colorlog==4.0.2',
'tornado>=5.1.1,<6', 'tornado==5.1.1',
'typing>=3.6.6;python_version<"3.5"', 'typing>=3.6.6;python_version<"3.5"',
'protobuf>=3.7,<3.8', 'protobuf==3.10.0',
'tzlocal>=1.5.1', 'tzlocal==2.0.0',
'pytz>=2019.1', 'pytz==2019.3',
'pyserial>=3.4,<4', 'pyserial==3.4',
'ifaddr>=0.1.6,<1', 'ifaddr==0.1.6',
] ]
# If you have problems importing platformio and esptool as modules you can set # If you have problems importing platformio and esptool as modules you can set
@ -41,8 +41,8 @@ REQUIRES = [
# This means they have to be in your $PATH. # This means they have to be in your $PATH.
if os.environ.get('ESPHOME_USE_SUBPROCESS') is None: if os.environ.get('ESPHOME_USE_SUBPROCESS') is None:
REQUIRES.extend([ REQUIRES.extend([
'platformio>=3.6.5', 'platformio==4.0.3',
'esptool>=2.6,<3', 'esptool==2.7',
]) ])
CLASSIFIERS = [ CLASSIFIERS = [