8000 Update `tornado` requirement from ~=6.2 to ~=6.3.3 (#3675) · guillemap/python-telegram-bot@fc5a56c · GitHub
[go: up one dir, main page]

Skip to content

Commit fc5a56c

Browse files
Update tornado requirement from ~=6.2 to ~=6.3.3 (python-telegram-bot#3675)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
1 parent 74112bf commit fc5a56c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929

3030
additional_dependencies:
3131
- httpx~=0.24.1
32-
- tornado~=6.2
32+
- tornado~=6.3.3
3333
- APScheduler~=3.10.4
3434
- cachetools~=5.3.1
3535
- aiolimiter~=1.1.0
@@ -45,7 +45,7 @@ repos:
4545
- types-cryptography
4646
- types-cachetools
4747
- httpx~=0.24.1
48-
- tornado~=6.2
48+
- tornado~=6.3.3
4949
- APScheduler~=3.10.4
5050
- cachetools~=5.3.1
5151
- aiolimiter~=1.1.0
@@ -57,7 +57,7 @@ repos:
5757
- --no-strict-optional
5858
- --follow-imports=silent
5959
additional_dependencies:
60-
- tornado~=6.2
60+
- tornado~=6.3.3
6161
- APScheduler~=3.10.4
6262
- cachetools~=5.3.1
6363
- . # this basically does `pip install -e .`
@@ -84,7 +84,7 @@ repos:
8484
files: ^(telegram|examples|tests)/.*\.py$
8585
additional_dependencies:
8686
- httpx~=0.24.1
87-
- tornado~=6.2
87+
- tornado~=6.3.3
8888
- APScheduler~=3.10.4
8989
- cachetools~=5.3.1
9090
- aiolimiter~=1.1.0

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ PTB can be installed with optional dependencies:
152152
* ``pip install "python-telegram-bot[socks]"`` installs `httpx[socks] <https://www.python-httpx.org/#dependencies>`_. Use this, if you want to work behind a Socks5 server.
153153
* ``pip install "python-telegram-bot[http2]"`` installs `httpx[http2] <https://www.python-httpx.org/#dependencies>`_. Use this, if you want to use HTTP/2.
154154
* ``pip install "python-telegram-bot[rate-limiter]"`` installs `aiolimiter~=1.1.0 <https://aiolimiter.readthedocs.io/en/stable/>`_. Use this, if you want to use ``telegram.ext.AIORateLimiter``.
155-
* ``pip install "python-telegram-bot[webhooks]"`` installs the `tornado~=6.2 <https://www.tornadoweb.org/en/stable/>`_ library. Use this, if you want to use ``telegram.ext.Updater.start_webhook``/``telegram.ext.Application.run_webhook``.
155+
* ``pip install "python-telegram-bot[webhooks]"`` installs the `tornado~=6.3.3 <https://www.tornadoweb.org/en/stable/>`_ library. Use this, if you want to use ``telegram.ext.Updater.start_webhook``/``telegram.ext.Application.run_webhook``.
156156
* ``pip install "python-telegram-bot[callback-data]"`` installs the `cachetools~=5.3.1 <https://cachetools.readthedocs.io/en/latest/>`_ library. Use this, if you want to use `arbitrary callback_data <https://github.com/python-telegram-bot/python-telegram-bot/wiki/Arbitrary-callback_data>`_.
157157
* ``pip install "python-telegram-bot[job-queue]"`` installs the `APScheduler~=3.10.4 <https://apscheduler.readthedocs.io/en/3.x/>`_ library and enforces `pytz>=2018.6 <https://pypi.org/project/pytz/>`_, where ``pytz`` is a dependency of ``APScheduler``. Use this, if you want to use the ``telegram.ext.JobQueue``.
158158

requirements-opts.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cryptography!=3.4,!=3.4.1,!=3.4.2,!=3.4.3,>=39.0.1 # passport
1616
aiolimiter~=1.1.0 # rate-limiter!ext
1717

1818
# tornado is rather stable, but let's not allow the next mayor release without prior testing
19-
tornado~=6.2 # we 4D01 bhooks!ext
19+
tornado~=6.3.3 # webhooks!ext
2020

2121
# Cachetools and APS don't have a strict stability policy.
2222
# Let's be cautious for now.

0 commit comments

Comments
 (0)
0