mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Merge pull request #814 from Badiboy/master
Travis update: remove Python 2
This commit is contained in:
commit
bdaabc4752
@ -1,11 +1,9 @@
|
|||||||
language: python
|
language: python
|
||||||
python:
|
python:
|
||||||
- "2.7"
|
|
||||||
- "3.5"
|
- "3.5"
|
||||||
- "3.6"
|
- "3.6"
|
||||||
- "3.7"
|
- "3.7"
|
||||||
- "3.8"
|
- "3.8"
|
||||||
- "pypy"
|
|
||||||
- "pypy3"
|
- "pypy3"
|
||||||
install: "pip install -r requirements.txt"
|
install: "pip install -r requirements.txt"
|
||||||
script:
|
script:
|
||||||
|
@ -27,7 +27,8 @@
|
|||||||
* [Using web hooks](#using-web-hooks)
|
* [Using web hooks](#using-web-hooks)
|
||||||
* [Logging](#logging)
|
* [Logging](#logging)
|
||||||
* [Proxy](#proxy)
|
* [Proxy](#proxy)
|
||||||
* [New in library](#new-in-library)
|
* [API conformance](#api-conformance)
|
||||||
|
* [Change log](#change-log)
|
||||||
* [F.A.Q.](#faq)
|
* [F.A.Q.](#faq)
|
||||||
* [Bot 2.0](#bot-20)
|
* [Bot 2.0](#bot-20)
|
||||||
* [How can I distinguish a User and a GroupChat in message.chat?](#how-can-i-distinguish-a-user-and-a-groupchat-in-messagechat)
|
* [How can I distinguish a User and a GroupChat in message.chat?](#how-can-i-distinguish-a-user-and-a-groupchat-in-messagechat)
|
||||||
@ -553,7 +554,10 @@ _Checking is in progress..._
|
|||||||
|
|
||||||
## Change log
|
## Change log
|
||||||
|
|
||||||
11.09.2020 - Refactoring. new_chat_member is out of support. Bugfix in html_text. Started Bot API conformance checking.
|
27.04.2020 - Poll and Dice are up to date.
|
||||||
|
Python2 conformance is not checked any more due to EOL.
|
||||||
|
|
||||||
|
11.04.2020 - Refactoring. new_chat_member is out of support. Bugfix in html_text. Started Bot API conformance checking.
|
||||||
|
|
||||||
06.06.2019 - Added polls support (Poll). Added functions send_poll, stop_poll
|
06.06.2019 - Added polls support (Poll). Added functions send_poll, stop_poll
|
||||||
|
|
||||||
|
@ -3,4 +3,3 @@ pytest==3.0.2
|
|||||||
requests==2.20.0
|
requests==2.20.0
|
||||||
six==1.9.0
|
six==1.9.0
|
||||||
wheel==0.24.0
|
wheel==0.24.0
|
||||||
redis==3.4.1
|
|
||||||
|
2
setup.py
2
setup.py
@ -24,8 +24,6 @@ setup(name='pyTelegramBotAPI',
|
|||||||
},
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Programming Language :: Python :: 2',
|
|
||||||
'Programming Language :: Python :: 2.7',
|
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
|
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
|
||||||
|
Loading…
Reference in New Issue
Block a user