mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-25 02:43:45 +03:00
Fix typing dependency must be installed below Python 3.5.2
This commit is contained in:
parent
33e908de42
commit
09c04282c9
2
setup.py
2
setup.py
|
@ -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']
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user