From 8e7220e5db5215824bd57eac57949c95d1da04a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Jun 2022 10:09:05 +0200 Subject: [PATCH] Update `cachetools` requirement from ~=5.0.0 to ~=5.1.0 (#3058) * Update cachetools requirement from ~=5.0.0 to ~=5.1.0 Updates the requirements on [cachetools](https://github.com/tkem/cachetools) to permit the latest version. - [Release notes](https://github.com/tkem/cachetools/releases) - [Changelog](https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst) - [Commits](https://github.com/tkem/cachetools/compare/v5.0.0...v5.1.0) --- updated-dependencies: - dependency-name: cachetools dependency-type: direct:production ... Signed-off-by: dependabot[bot] * update other places as well 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 9c1dbde0e..f10b90c12 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -36,7 +36,7 @@ repos: - httpx~=0.22.0 - tornado~=6.1 - APScheduler~=3.9.1 - - cachetools~=5.0.0 + - cachetools~=5.1.0 - . # this basically does `pip install -e .` - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.960 @@ -52,7 +52,7 @@ repos: - httpx~=0.22.0 - tornado~=6.1 - APScheduler~=3.9.1 - - cachetools~=5.0.0 + - cachetools~=5.1.0 - . # this basically does `pip install -e .` - id: mypy name: mypy-examples @@ -63,7 +63,7 @@ repos: additional_dependencies: - tornado~=6.1 - APScheduler~=3.9.1 - - cachetools~=5.0.0 + - cachetools~=5.1.0 - . # this basically does `pip install -e .` - repo: https://github.com/asottile/pyupgrade rev: v2.32.1 diff --git a/README.rst b/README.rst index 219264524..b548531b3 100644 --- a/README.rst +++ b/README.rst @@ -123,7 +123,7 @@ The dependencies are: * `httpx ~= 0.22.0 `_ for ``telegram.request.HTTPXRequest``, the default networking backend * `tornado~=6.1 `_ for ``telegram.ext.Updater.start_webhook`` -* `cachetools~=5.0.0 `_ for ``telegram.ext.CallbackDataCache`` +* `cachetools~=5.1.0 `_ for ``telegram.ext.CallbackDataCache`` * `APScheduler~=3.9.1 `_ for ``telegram.ext.JobQueue`` ``python-telegram-bot`` is most useful when used along with additional libraries. diff --git a/requirements.txt b/requirements.txt index 8b5e201dd..d16c32dc2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,7 +14,7 @@ tornado~=6.1 # Cachetools and APS don't have a strict stability policy. # Let's be cautious for now. -cachetools~=5.0.0 +cachetools~=5.1.0 APScheduler~=3.9.1 # pytz is required by APS and just needs the lower bound due to #2120