From 590471d4a3fb573b5b02bd7303b9dcd54f7c80d2 Mon Sep 17 00:00:00 2001 From: Alexander Akhmetov Date: Sat, 9 Nov 2019 14:44:46 +0100 Subject: [PATCH 1/2] Fix typo --- docs/source/changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 78a82d19..465383fe 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -8,7 +8,7 @@ Changelog - Added a new parameter to the ``call_method``: ``block=False``. If it is set to ``True``, the method waits for the result from tdlib. - Added ``Telegram.get_message`` method (thanks to @ali-shokoohi) - Fixed a race condition when in some cases ``AsyncResult.wait()`` could raise ``TimeoutError`` or end up in an endless loop. (thanks to @akamaus) -- Added a new meyhod: ``get_user``. +- Added a new method: ``get_user``. [0.10.0] - 2019-04-10 From 84099425f99e2afe4eea0be4a4a311ed3811a3c0 Mon Sep 17 00:00:00 2001 From: Alexander Akhmetov Date: Sat, 9 Nov 2019 14:46:46 +0100 Subject: [PATCH 2/2] Add python 3.8 to travis and tox --- .travis.yml | 3 ++- tox.ini | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4d1f7bf0..90e65cef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,8 @@ sudo: false language: python python: - "3.6" - - "3.7-dev" + - "3.7" + - "3.8" install: pip install tox-travis flake8 pylint script: - flake8 telegram diff --git a/tox.ini b/tox.ini index bf92b308..bccb7ec9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = mypy,flake8,pylint,py37,py36 +envlist = mypy,flake8,pylint,py37,py36,py38 basepython = python37 [testenv]