8000 Update `cachetools` requirement from ~=5.3.1 to ~=5.3.2 (#3954) · guillemap/python-telegram-bot@c71612f · GitHub
[go: up one dir, main page]

Skip to content

Commit c71612f

Browse files
Update cachetools requirement from ~=5.3.1 to ~=5.3.2 (python-telegram-bot#3954)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com> Co-authored-by: Bibo-Joshi <22366557+Bibo-Joshi@users.noreply.github.com>
1 parent 4143d99 commit c71612f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repos:
3131
- httpx~=0.25.0
3232
- tornado~=6.3.3
3333
- APScheduler~=3.10.4
34-
- cachetools~=5.3.1
34+
- cachetools~=5.3.2
3535
- aiolimiter~=1.1.0
3636
- . # this basically does `pip install -e .`
3737
- repo: https://github.com/pre-commit/mirrors-mypy
@@ -47,7 +47,7 @@ repos:
4747
- httpx~=0.25.0
4848
- tornado~=6.3.3
4949
- APScheduler~=3.10.4
50-
- cachetools~=5.3.1
50+
- cachetools~=5.3.2
5151
- aiolimiter~=1.1.0
5252
- . # this basically does `pip install -e .`
5353
- id: mypy
@@ -59,7 +59,7 @@ repos:
5959
additional_dependencies:
6060
- tornado~=6.3.3
6161
- APScheduler~=3.10.4
62-
- cachetools~=5.3.1
62+
- cachetools~=5.3.2
6363
- . # this basically does `pip install -e .`
6464
- repo: https://github.com/asottile/pyupgrade
6565
rev: v3.13.0
@@ -86,5 +86,5 @@ repos:
8686
- httpx~=0.25.0
8787
- tornado~=6.3.3
8888
- APScheduler~=3.10.4
89-
- cachetools~=5.3.1
89+
- cachetools~=5.3.2
9090
- aiolimiter~=1.1.0

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ PTB can be installed with optional dependencies:
153153
* ``pip install "python-telegram-bot[http2]"`` installs `httpx[http2] <https://www.python-httpx.org/#dependencies>`_. Use this, if you want to use HTTP/2.
154154
* ``pip install "python-telegram-bot[rate-limiter]"`` installs `aiolimiter~=1.1.0 <https://aiolimiter.readthedocs.io/en/stable/>`_. Use this, if you want to use ``telegram.ext.AIORateLimiter``.
155155
* ``pip install "python-telegram-bot[webhooks]"`` installs the `tornado~=6.3.3 <https://www.tornadoweb.org/en/stable/>`_ library. Use this, if you want to use ``telegram.ext.Updater.start_webhook``/``telegram.ext.Application.run_webhook``.
156-
* ``pip install "python-telegram-bot[callback-data]"`` installs the `cachetools~=5.3.1 <https://cachetools.readthedocs.io/en/latest/>`_ library. Use this, if you want to use `arbitrary callback_data <https://github.com/python-telegram-bot/python-telegram-bot/wiki/Arbitrary-callback_data>`_.
156+
* ``pip install "python-telegram-bot[callback-data]"`` installs the `cachetools~=5.3.2 <https://cachetools.readthedocs.io/en/latest/>`_ library. Use this, if you want to use `arbitrary callback_data <https://github.com/python-telegram-bot/python-telegram-bot/wiki/Arbitrary-callback_data>`_.
157157
* ``pip install "python-telegram-bot[job-queue]"`` installs the `APScheduler~=3.10.4 <https://apscheduler.readthedocs.io/en/3.x/>`_ library and enforces `pytz>=2018.6 <https://pypi.org/project/pytz/>`_, where ``pytz`` is a dependency of ``APScheduler``. Use this, if you want to use the ``telegram.ext.JobQueue``.
158158

159159
To install multiple optional dependencies, separate them by commas, e.g. ``pip install "python-telegram-bot[socks,webhooks]"``.

requirements-opts.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ tornado~=6.3.3 # webhooks!ext
2020

2121
# Cachetools and APS don't have a strict stability policy.
2222
# Let's be cautious for now.
23-
cachetools~=5.3.1 # callback-data!ext
23+
cachetools~=5.3.2 # callback-data!ext
2424
APScheduler~=3.10.4 # job-queue!ext
2525

2626
# pytz is required by APS and just needs the lower bound due to #2120

0 commit comments

Comments
 (0)
0