Update tornado requirement from ~=6.1 to ~=6.2 (#3149)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Hinrich Mahler <22366557+Bibo-Joshi@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2022-07-12 20:16:22 +02:00 committed by GitHub
parent 460aaf8bb6
commit 14c86daf23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -32,7 +32,7 @@ repos:
additional_dependencies:
- httpx~=0.23.0
- tornado~=6.1
- tornado~=6.2
- APScheduler~=3.9.1
- cachetools~=5.2.0
- . # this basically does `pip install -e .`
@ -48,7 +48,7 @@ repos:
- types-cryptography
- types-cachetools
- httpx~=0.23.0
- tornado~=6.1
- tornado~=6.2
- APScheduler~=3.9.1
- cachetools~=5.2.0
- . # this basically does `pip install -e .`
@ -59,7 +59,7 @@ repos:
- --no-strict-optional
- --follow-imports=silent
additional_dependencies:
- tornado~=6.1
- tornado~=6.2
- APScheduler~=3.9.1
- cachetools~=5.2.0
- . # this basically does `pip install -e .`

View file

@ -122,7 +122,7 @@ However, for some features using a 3rd party library is more sane than implement
The dependencies are:
* `httpx ~= 0.23.0 <https://www.python-httpx.org>`_ for ``telegram.request.HTTPXRequest``, the default networking backend
* `tornado~=6.1 <https://www.tornadoweb.org/en/stable/>`_ for ``telegram.ext.Updater.start_webhook``
* `tornado~=6.2 <https://www.tornadoweb.org/en/stable/>`_ for ``telegram.ext.Updater.start_webhook``
* `cachetools~=5.2.0 <https://cachetools.readthedocs.io/en/latest/>`_ for ``telegram.ext.CallbackDataCache``
* `APScheduler~=3.9.1 <https://apscheduler.readthedocs.io/en/3.x/>`_ for ``telegram.ext.JobQueue``

View file

@ -10,7 +10,7 @@ httpx ~= 0.23.0
# only telegram.ext: # Keep this line here; used in setup(-raw).py
# tornado is rather stable, but let's not allow the next mayor release without prior testing
tornado~=6.1
tornado~=6.2
# Cachetools and APS don't have a strict stability policy.
# Let's be cautious for now.