Fix typing dependency must be installed below Python 3.5.2

This commit is contained in:
Lonami Exo 2018-03-22 19:02:40 +01:00
parent 33e908de42
commit 09c04282c9

View File

@ -154,7 +154,7 @@ def main():
'telethon_generator/parser/tl_parser.py', 'telethon_generator/parser/tl_parser.py',
]), ]),
install_requires=['pyaes', 'rsa', install_requires=['pyaes', 'rsa',
'typing' if version_info < (3, 5) else ""], 'typing' if version_info < (3, 5, 2) else ""],
extras_require={ extras_require={
'cryptg': ['cryptg'] 'cryptg': ['cryptg']
} }