mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2025-01-20 15:54:52 +01:00
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:
parent
460aaf8bb6
commit
14c86daf23
3 changed files with 5 additions and 5 deletions
|
@ -32,7 +32,7 @@ repos:
|
||||||
|
|
||||||
additional_dependencies:
|
additional_dependencies:
|
||||||
- httpx~=0.23.0
|
- httpx~=0.23.0
|
||||||
- tornado~=6.1
|
- tornado~=6.2
|
||||||
- APScheduler~=3.9.1
|
- APScheduler~=3.9.1
|
||||||
- cachetools~=5.2.0
|
- cachetools~=5.2.0
|
||||||
- . # this basically does `pip install -e .`
|
- . # this basically does `pip install -e .`
|
||||||
|
@ -48,7 +48,7 @@ repos:
|
||||||
- types-cryptography
|
- types-cryptography
|
||||||
- types-cachetools
|
- types-cachetools
|
||||||
- httpx~=0.23.0
|
- httpx~=0.23.0
|
||||||
- tornado~=6.1
|
- tornado~=6.2
|
||||||
- APScheduler~=3.9.1
|
- APScheduler~=3.9.1
|
||||||
- cachetools~=5.2.0
|
- cachetools~=5.2.0
|
||||||
- . # this basically does `pip install -e .`
|
- . # this basically does `pip install -e .`
|
||||||
|
@ -59,7 +59,7 @@ repos:
|
||||||
- --no-strict-optional
|
- --no-strict-optional
|
||||||
- --follow-imports=silent
|
- --follow-imports=silent
|
||||||
additional_dependencies:
|
additional_dependencies:
|
||||||
- tornado~=6.1
|
- tornado~=6.2
|
||||||
- APScheduler~=3.9.1
|
- APScheduler~=3.9.1
|
||||||
- cachetools~=5.2.0
|
- cachetools~=5.2.0
|
||||||
- . # this basically does `pip install -e .`
|
- . # this basically does `pip install -e .`
|
||||||
|
|
|
@ -122,7 +122,7 @@ However, for some features using a 3rd party library is more sane than implement
|
||||||
The dependencies are:
|
The dependencies are:
|
||||||
|
|
||||||
* `httpx ~= 0.23.0 <https://www.python-httpx.org>`_ for ``telegram.request.HTTPXRequest``, the default networking backend
|
* `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``
|
* `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``
|
* `APScheduler~=3.9.1 <https://apscheduler.readthedocs.io/en/3.x/>`_ for ``telegram.ext.JobQueue``
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ httpx ~= 0.23.0
|
||||||
# only telegram.ext: # Keep this line here; used in setup(-raw).py
|
# 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 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.
|
# Cachetools and APS don't have a strict stability policy.
|
||||||
# Let's be cautious for now.
|
# Let's be cautious for now.
|
||||||
|
|
Loading…
Reference in a new issue