X Tutup
Skip to content

Commit ac55ba0

Browse files
committed
Bumping version to v4.1 [ci skip]
1 parent 6bdca1e commit ac55ba0

File tree

3 files changed

+32
-35
lines changed

3 files changed

+32
-35
lines changed

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = '4.0'
61+
version = '4.1'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '4.0.3'
63+
release = '4.1'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

setup.py

Lines changed: 29 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/usr/bin/env python
2-
32
'''The setup and build script for the python-telegram-bot library.'''
43

54
import os
@@ -24,34 +23,32 @@ def requirements():
2423
return requirements_list
2524

2625

27-
setup(
28-
name='python-telegram-bot',
29-
version='4.0.3',
30-
author='Leandro Toledo',
31-
author_email='devs@python-telegram-bot.org',
32-
license='LGPLv3',
33-
url='https://github.com/python-telegram-bot/python-telegram-bot',
34-
keywords='python telegram bot api wrapper',
35-
description='A Python wrapper around the Telegram Bot API',
36-
long_description=(read('README.rst')),
37-
packages=find_packages(exclude=['tests*']),
38-
install_requires=requirements(),
39-
include_package_data=True,
40-
classifiers=[
41-
'Development Status :: 5 - Production/Stable',
42-
'Intended Audience :: Developers',
43-
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
44-
'Operating System :: OS Independent',
45-
'Topic :: Software Development :: Libraries :: Python Modules',
46-
'Topic :: Communications :: Chat',
47-
'Topic :: Internet',
48-
'Programming Language :: Python',
49-
'Programming Language :: Python :: 2',
50-
'Programming Language :: Python :: 2.6',
51-
'Programming Language :: Python :: 2.7',
52-
'Programming Language :: Python :: 3',
53-
'Programming Language :: Python :: 3.3',
54-
'Programming Language :: Python :: 3.4',
55-
'Programming Language :: Python :: 3.5',
56-
],
57-
)
26+
setup(name='python-telegram-bot',
27+
version='4.1',
28+
author='Leandro Toledo',
29+
author_email='devs@python-telegram-bot.org',
30+
license='LGPLv3',
31+
url='https://github.com/python-telegram-bot/python-telegram-bot',
32+
keywords='python telegram bot api wrapper',
33+
description='A Python wrapper around the Telegram Bot API',
34+
long_description=(read('README.rst')),
35+
packages=find_packages(exclude=['tests*']),
36+
install_requires=requirements(),
37+
include_package_data=True,
38+
classifiers=[
39+
'Development Status :: 5 - Production/Stable',
40+
'Intended Audience :: Developers',
41+
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
42+
'Operating System :: OS Independent',
43+
'Topic :: Software Development :: Libraries :: Python Modules',
44+
'Topic :: Communications :: Chat',
45+
'Topic :: Internet',
46+
'Programming Language :: Python',
47+
'Programming Language :: Python :: 2',
48+
'Programming Language :: Python :: 2.6',
49+
'Programming Language :: Python :: 2.7',
50+
'Programming Language :: Python :: 3',
51+
'Programming Language :: Python :: 3.3',
52+
'Programming Language :: Python :: 3.4',
53+
'Programming Language :: Python :: 3.5',
54+
],)

telegram/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
from .bot import Bot
8282

8383
__author__ = 'devs@python-telegram-bot.org'
84-
__version__ = '4.0.3'
84+
__version__ = '4.1'
8585
__all__ = ['Audio', 'Bot', 'Chat', 'ChatAction', 'ChosenInlineResult', 'CallbackQuery', 'Contact',
8686
'Document', 'Emoji', 'File', 'ForceReply', 'InlineKeyboardButton',
8787
'InlineKeyboardMarkup', 'InlineQuery', 'InlineQueryResult', 'InlineQueryResult',

0 commit comments

Comments
 (0)
X Tutup