From 14c86daf23e9549b2024c312c8bd991801667427 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Jul 2022 20:16:22 +0200 Subject: [PATCH] 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> --- .pre-commit-config.yaml | 6 +++--- README.rst | 2 +- requirements.txt | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 83f1c84a8..ef6bc8144 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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 .` diff --git a/README.rst b/README.rst index 9de229707..dbf6ee3f6 100644 --- a/README.rst +++ b/README.rst @@ -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 `_ for ``telegram.request.HTTPXRequest``, the default networking backend -* `tornado~=6.1 `_ for ``telegram.ext.Updater.start_webhook`` +* `tornado~=6.2 `_ for ``telegram.ext.Updater.start_webhook`` * `cachetools~=5.2.0 `_ for ``telegram.ext.CallbackDataCache`` * `APScheduler~=3.9.1 `_ for ``telegram.ext.JobQueue`` diff --git a/requirements.txt b/requirements.txt index 5178ce978..347536559 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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.