diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3e88d425d..1a514d8f2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -31,7 +31,7 @@ repos: - httpx~=0.25.0 - tornado~=6.3.3 - APScheduler~=3.10.4 - - cachetools~=5.3.1 + - cachetools~=5.3.2 - aiolimiter~=1.1.0 - . # this basically does `pip install -e .` - repo: https://github.com/pre-commit/mirrors-mypy @@ -47,7 +47,7 @@ repos: - httpx~=0.25.0 - tornado~=6.3.3 - APScheduler~=3.10.4 - - cachetools~=5.3.1 + - cachetools~=5.3.2 - aiolimiter~=1.1.0 - . # this basically does `pip install -e .` - id: mypy @@ -59,7 +59,7 @@ repos: additional_dependencies: - tornado~=6.3.3 - APScheduler~=3.10.4 - - cachetools~=5.3.1 + - cachetools~=5.3.2 - . # this basically does `pip install -e .` - repo: https://github.com/asottile/pyupgrade rev: v3.13.0 @@ -86,5 +86,5 @@ repos: - httpx~=0.25.0 - tornado~=6.3.3 - APScheduler~=3.10.4 - - cachetools~=5.3.1 + - cachetools~=5.3.2 - aiolimiter~=1.1.0 diff --git a/README.rst b/README.rst index e6eb5e5fe..adb0bd843 100644 --- a/README.rst +++ b/README.rst @@ -153,7 +153,7 @@ PTB can be installed with optional dependencies: * ``pip install "python-telegram-bot[http2]"`` installs `httpx[http2] `_. Use this, if you want to use HTTP/2. * ``pip install "python-telegram-bot[rate-limiter]"`` installs `aiolimiter~=1.1.0 `_. Use this, if you want to use ``telegram.ext.AIORateLimiter``. * ``pip install "python-telegram-bot[webhooks]"`` installs the `tornado~=6.3.3 `_ 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.3.1 `_ library. Use this, if you want to use `arbitrary callback_data `_. +* ``pip install "python-telegram-bot[callback-data]"`` installs the `cachetools~=5.3.2 `_ library. Use this, if you want to use `arbitrary callback_data `_. * ``pip install "python-telegram-bot[job-queue]"`` installs the `APScheduler~=3.10.4 `_ 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 a794b2e48..d33983452 100644 --- a/requirements-opts.txt +++ b/requirements-opts.txt @@ -20,7 +20,7 @@ tornado~=6.3.3 # webhooks!ext # Cachetools and APS don't have a strict stability policy. # Let's be cautious for now. -cachetools~=5.3.1 # callback-data!ext +cachetools~=5.3.2 # callback-data!ext APScheduler~=3.10.4 # job-queue!ext # pytz is required by APS and just needs the lower bound due to #2120