From fc5a56c15b658a27eacaee0809c1d8b1be481137 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 18:47:50 +0200 Subject: [PATCH] Update `tornado` requirement from ~=6.2 to ~=6.3.3 (#3675) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com> --- .pre-commit-config.yaml | 8 ++++---- README.rst | 2 +- requirements-opts.txt | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8aa85c5a5..c2e38476e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,7 +29,7 @@ repos: additional_dependencies: - httpx~=0.24.1 - - tornado~=6.2 + - tornado~=6.3.3 - APScheduler~=3.10.4 - cachetools~=5.3.1 - aiolimiter~=1.1.0 @@ -45,7 +45,7 @@ repos: - types-cryptography - types-cachetools - httpx~=0.24.1 - - tornado~=6.2 + - tornado~=6.3.3 - APScheduler~=3.10.4 - cachetools~=5.3.1 - aiolimiter~=1.1.0 @@ -57,7 +57,7 @@ repos: - --no-strict-optional - --follow-imports=silent additional_dependencies: - - tornado~=6.2 + - tornado~=6.3.3 - APScheduler~=3.10.4 - cachetools~=5.3.1 - . # this basically does `pip install -e .` @@ -84,7 +84,7 @@ repos: files: ^(telegram|examples|tests)/.*\.py$ additional_dependencies: - httpx~=0.24.1 - - tornado~=6.2 + - tornado~=6.3.3 - APScheduler~=3.10.4 - cachetools~=5.3.1 - aiolimiter~=1.1.0 diff --git a/README.rst b/README.rst index 4b06d6158..7549e7e30 100644 --- a/README.rst +++ b/README.rst @@ -152,7 +152,7 @@ PTB can be installed with optional dependencies: * ``pip install "python-telegram-bot[socks]"`` installs `httpx[socks] `_. Use this, if you want to work behind a Socks5 server. * ``pip install "python-telegram-bot[http2]"`` installs `httpx[http2] `_. Use this, if you want to use HTTP/2. * ``pip install "python-telegram-bot[rate-limiter]"`` installs `aiolimiter~=1.1.0 `_. Use this, if you want to use ``telegram.ext.AIORateLimiter``. -* ``pip install "python-telegram-bot[webhooks]"`` installs the `tornado~=6.2 `_ library. Use this, if you want to use ``telegram.ext.Updater.start_webhook``/``telegram.ext.Application.run_webhook``. +* ``pip install "python-telegram-bot[webhooks]"`` installs the `tornado~=6.3.3 `_ library. Use this, if you want to use ``telegram.ext.Updater.start_webhook``/``telegram.ext.Application.run_webhook``. * ``pip install "python-telegram-bot[callback-data]"`` installs the `cachetools~=5.3.1 `_ library. Use this, if you want to use `arbitrary callback_data `_. * ``pip install "python-telegram-bot[job-queue]"`` installs the `APScheduler~=3.10.4 `_ library and enforces `pytz>=2018.6 `_, where ``pytz`` is a dependency of ``APScheduler``. Use this, if you want to use the ``telegram.ext.JobQueue``. diff --git a/requirements-opts.txt b/requirements-opts.txt index 1df2cf65a..a794b2e48 100644 --- a/requirements-opts.txt +++ b/requirements-opts.txt @@ -16,7 +16,7 @@ cryptography!=3.4,!=3.4.1,!=3.4.2,!=3.4.3,>=39.0.1 # passport aiolimiter~=1.1.0 # rate-limiter!ext # tornado is rather stable, but let's not allow the next mayor release without prior testing -tornado~=6.2 # webhooks!ext +tornado~=6.3.3 # webhooks!ext # Cachetools and APS don't have a strict stability policy. # Let's be cautious for now.