From 98449bb32f6d9035c6186df8d4cc84636dfb56c2 Mon Sep 17 00:00:00 2001 From: Lonami Exo Date: Sun, 13 May 2018 09:53:05 +0200 Subject: [PATCH] Add missing comma in the dependency list --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2e68754f..d8b737d5 100755 --- a/setup.py +++ b/setup.py @@ -197,7 +197,8 @@ def main(): 'telethon_generator/parser/tl_object.py', 'telethon_generator/parser/tl_parser.py', ]), - install_requires=['pyaes', 'rsa', 'async_generator' + # We must be careful not to miss any comma here... v + install_requires=['pyaes', 'rsa', 'async_generator', 'typing' if version_info < (3, 5, 2) else ""], extras_require={ 'cryptg': ['cryptg']