From 200b6232637b98fea433b633624daf02ec0ed928 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 14 Jan 2023 17:41:47 +0100 Subject: [PATCH] Update `cachetools` requirement from ~=5.2.0 to ~=5.2.1 (#3502) Co-authored-by: Hinrich Mahler <22366557+Bibo-Joshi@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 d97392248..85464aa0f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -34,7 +34,7 @@ repos: - httpx~=0.23.3 - tornado~=6.2 - APScheduler~=3.9.1 - - cachetools~=5.2.0 + - cachetools~=5.2.1 - aiolimiter~=1.0.0 - . # this basically does `pip install -e .` - repo: https://github.com/pre-commit/mirrors-mypy @@ -50,7 +50,7 @@ repos: - httpx~=0.23.3 - tornado~=6.2 - APScheduler~=3.9.1 - - cachetools~=5.2.0 + - cachetools~=5.2.1 - aiolimiter~=1.0.0 - . # this basically does `pip install -e .` - id: mypy @@ -62,7 +62,7 @@ repos: additional_dependencies: - tornado~=6.2 - APScheduler~=3.9.1 - - cachetools~=5.2.0 + - cachetools~=5.2.1 - . # this basically does `pip install -e .` - repo: https://github.com/asottile/pyupgrade rev: v3.3.1 @@ -89,5 +89,5 @@ repos: - httpx~=0.23.3 - tornado~=6.2 - APScheduler~=3.9.1 - - cachetools~=5.2.0 + - cachetools~=5.2.1 - aiolimiter~=1.0.0 diff --git a/README.rst b/README.rst index f9f7e005d..b5d8cce26 100644 --- a/README.rst +++ b/README.rst @@ -151,7 +151,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[rate-limiter]`` installs `aiolimiter~=1.0.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[callback-data]`` installs the `cachetools~=5.2.0 `_ library. Use this, if you want to use `arbitrary callback_data `_. +* ``pip install python-telegram-bot[callback-data]`` installs the `cachetools~=5.2.1 `_ library. Use this, if you want to use `arbitrary callback_data `_. * ``pip install python-telegram-bot[job-queue]`` installs the `APScheduler~=3.9.1 `_ library and enforces `pytz>=2018.6 `_, where ``pytz`` is a dependency of ``APScheduler``. Use this, if you want to use the ``telegram.ext.JobQueue``. To install multiple optional dependencies, separate them by commas, e.g. ``pip install python-telegram-bot[socks,webhooks]``. diff --git a/requirements-opts.txt b/requirements-opts.txt index 86b473408..4621064c3 100644 --- a/requirements-opts.txt +++ b/requirements-opts.txt @@ -19,7 +19,7 @@ tornado~=6.2 # webhooks!ext # Cachetools and APS don't have a strict stability policy. # Let's be cautious for now. -cachetools~=5.2.0 # callback-data!ext +cachetools~=5.2.1 # callback-data!ext APScheduler~=3.9.1 # job-queue!ext # pytz is required by APS and just needs the lower bound due to #2120