Python 3.5 doesn't need typing backport

This commit is contained in:
Tulir Asokan 2018-03-09 23:16:41 +02:00
parent d985578e6c
commit ff29a2b042

View File

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