From 57c780c62f5c1a3ee8441d6b690dd3f5a3d22288 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 May 2023 07:59:44 +0200 Subject: [PATCH] Update `aiolimiter` requirement from ~=1.0.0 to ~=1.1.0 (#3707) Co-authored-by: Hinrich Mahler <22366557+Bibo-Joshi@users.noreply.github.com> --- .pre-commit-config.yaml | 6 +++--- README.rst | 2 +- requirements-opts.txt | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 45e5f260e..538e706a6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -32,7 +32,7 @@ repos: - tornado~=6.2 - APScheduler~=3.10.1 - cachetools~=5.3.0 - - aiolimiter~=1.0.0 + - aiolimiter~=1.1.0 - . # this basically does `pip install -e .` - repo: https://github.com/pre-commit/mirrors-mypy rev: v1.2.0 @@ -48,7 +48,7 @@ repos: - tornado~=6.2 - APScheduler~=3.10.1 - cachetools~=5.3.0 - - aiolimiter~=1.0.0 + - aiolimiter~=1.1.0 - . # this basically does `pip install -e .` - id: mypy name: mypy-examples @@ -87,4 +87,4 @@ repos: - tornado~=6.2 - APScheduler~=3.10.1 - cachetools~=5.3.0 - - aiolimiter~=1.0.0 + - aiolimiter~=1.1.0 diff --git a/README.rst b/README.rst index 86d776ed5..1ef8956d4 100644 --- a/README.rst +++ b/README.rst @@ -151,7 +151,7 @@ PTB can be installed with optional dependencies: * ``pip install python-telegram-bot[passport]`` installs the `cryptography>=39.0.1 `_ library. Use this, if you want to use Telegram Passport related functionality. * ``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[http2]`` installs `httpx[http2] `_. Use this, if you want to use HTTP/2. -* ``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[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.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.3.0 `_ library. Use this, if you want to use `arbitrary callback_data `_. * ``pip install python-telegram-bot[job-queue]`` installs the `APScheduler~=3.10.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``. diff --git a/requirements-opts.txt b/requirements-opts.txt index 9e1005b2a..cb8069743 100644 --- a/requirements-opts.txt +++ b/requirements-opts.txt @@ -13,7 +13,7 @@ httpx[socks] # socks httpx[http2] # http2 cryptography!=3.4,!=3.4.1,!=3.4.2,!=3.4.3,>=39.0.1 # passport -aiolimiter~=1.0.0 # rate-limiter!ext +aiolimiter~=1.1.0 # rate-limiter!ext # tornado is rather stable, but let's not allow the next mayor release without prior testing tornado~=6.2 # webhooks!ext