File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed
Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 1+ 2015-07-15
2+
3+ Released 1.9
4+ Python 3 officially supported
5+ PEP8 improvements
6+
7+
182015-07-12
29
310 Released 1.8
411 Fixes crash when replying an unicode text message (special thanks to JRoot3D)
512
13+
6142015-07-11
715
816 Released 1.7
917 Fixes crash when username is not defined on chat (special thanks to JRoot3D)
1018
19+
11202015-07-10
1221
1322 Released 1.6
1423 Improvements for GAE support
1524
25+
16262015-07-10
1727
1828 Released 1.5
1929 Fixes randomly unicode issues when using InputFile
2030
31+
21322015-07-10
2233
2334 Released 1.4
2435 requests lib is no longer required
2536 Google App Engine (GAE) is supported
2637
38+
27392015-07-10
2840
2941 Released 1.3
3042 Added support to setWebhook (special thanks to macrojames)
3143
44+
32452015-07-09
3346
3447 Released 1.2
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ def read(*paths):
1515
1616setup (
1717 name = 'python-telegram-bot' ,
18- version = '1.8 ' ,
18+ version = '1.9 ' ,
1919 author = 'Leandro Toledo' ,
2020 author_email = 'leandrotoledodesouza@gmail.com' ,
2121 license = 'GPLv2' ,
@@ -34,6 +34,11 @@ def read(*paths):
3434 'Topic :: Internet' ,
3535 'Programming Language :: Python' ,
3636 'Programming Language :: Python :: 2' ,
37+ 'Programming Language :: Python :: 2.6' ,
3738 'Programming Language :: Python :: 2.7' ,
39+ 'Programming Language :: Python :: 3' ,
40+ 'Programming Language :: Python :: 3.2' ,
41+ 'Programming Language :: Python :: 3.3' ,
42+ 'Programming Language :: Python :: 3.4' ,
3843 ],
3944)
Original file line number Diff line number Diff line change 33"""A library that provides a Python interface to the Telegram Bots API"""
44
55__author__ = 'leandrotoledodesouza@gmail.com'
6- __version__ = '1.1 '
6+ __version__ = '1.9 '
77
88from .user import User
99from .message import Message
You can’t perform that action at this time.
0 commit comments