mirror of
https://github.com/esphome/esphome.git
synced 2024-11-21 22:48:10 +01:00
typing is only required for python < 3.5 (#341)
Since 3.5, it is included in the standard library.
This commit is contained in:
parent
4f5389998f
commit
54dd9e94ab
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -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',
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue