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] <support@github.com>

* 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>
This commit is contained in:
dependabot[bot] 2022-06-02 10:09:05 +02:00 committed by GitHub
parent 977d56ab43
commit 8e7220e5db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -123,7 +123,7 @@ The dependencies are:
* `httpx ~= 0.22.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``
* `cachetools~=5.0.0 <https://cachetools.readthedocs.io/en/latest/>`_ for ``telegram.ext.CallbackDataCache``
* `cachetools~=5.1.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``
``python-telegram-bot`` is most useful when used along with additional libraries.

View file

@ -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