typing is only required for python < 3.5 (#341)

Since 3.5, it is included in the standard library.
This commit is contained in:
Robert Schütz 2019-01-15 16:50:50 +01:00 committed by Otto Winter
parent 4f5389998f
commit 54dd9e94ab
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ REQUIRES = [
'colorlog>=3.1.2',
'tornado>=5.0.0',
'esptool>=2.3.1',
'typing>=3.0.0',
'typing>=3.0.0;python_version<"3.5"',
'protobuf>=3.4',
'tzlocal>=1.4',
]