diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 813b0616f..6a111141f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -36,7 +36,7 @@ repos: - httpx~=0.23.0 - tornado~=6.1 - APScheduler~=3.9.1 - - cachetools~=5.1.0 + - cachetools~=5.2.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.23.0 - tornado~=6.1 - APScheduler~=3.9.1 - - cachetools~=5.1.0 + - cachetools~=5.2.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.1.0 + - cachetools~=5.2.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 dd87dccbd..6ee6a6b6f 100644 --- a/README.rst +++ b/README.rst @@ -123,7 +123,7 @@ The dependencies are: * `httpx ~= 0.23.0 `_ for ``telegram.request.HTTPXRequest``, the default networking backend * `tornado~=6.1 `_ for ``telegram.ext.Updater.start_webhook`` -* `cachetools~=5.1.0 `_ for ``telegram.ext.CallbackDataCache`` +* `cachetools~=5.2.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 5f997871e..5178ce978 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.1.0 +cachetools~=5.2.0 APScheduler~=3.9.1 # pytz is required by APS and just needs the lower bound due to #2120