From 21abb437ebe40dedc5c31326149aea0ffb8980ac Mon Sep 17 00:00:00 2001 From: Rajiv Bakulesh Shah Date: Mon, 8 Apr 2024 05:32:48 -0700 Subject: [PATCH] Upgrade requirements (#740) --- requirements.txt | 51 +++++++++++++++++++++++++--------------------- tests/test_base.py | 2 +- tests/test_dict.py | 2 +- 3 files changed, 30 insertions(+), 25 deletions(-) diff --git a/requirements.txt b/requirements.txt index 5a864ddb..113c5cf3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,45 +1,49 @@ +annotated-types==0.6.0 async-timeout==4.0.3 Authlib==1.3.0 -bandit==1.7.7 +bandit==1.7.8 certifi==2024.2.2 cffi==1.16.0 charset-normalizer==3.3.2 click==8.1.7 -coverage==7.4.3 +coverage==7.4.4 cryptography==42.0.5 docutils==0.20.1 dparse==0.6.4b0 flake8==7.0.0 hiredis==2.3.2 idna==3.6 -importlib-metadata==7.0.1 +importlib_metadata==7.1.0 iniconfig==2.0.0 isort==5.13.2 -jaraco.classes==3.3.1 +jaraco.classes==3.4.0 +jaraco.context==5.3.0 +jaraco.functools==4.0.0 Jinja2==3.1.3 -keyring==24.3.1 +keyring==25.1.0 markdown-it-py==3.0.0 MarkupSafe==2.1.5 -marshmallow==3.21.0 +marshmallow==3.21.1 mccabe==0.7.0 mdurl==0.1.2 mmh3==4.1.0 more-itertools==10.2.0 -mypy==1.8.0 +mypy==1.9.0 mypy-extensions==1.0.0 -nh3==0.2.15 -packaging==23.2 +nh3==0.2.17 +packaging==24.0 pbr==6.0.0 -pkginfo==1.9.6 +pkginfo==1.10.0 pluggy==1.4.0 pycodestyle==2.11.1 -pycparser==2.21 -pydantic==1.10.14 +pycparser==2.22 +pydantic==2.6.4 +pydantic_core==2.16.3 pyflakes==3.2.0 Pygments==2.17.2 -pytest==8.0.2 -pytest-asyncio==0.23.5 -pytest-cov==4.1.0 +pytest==8.1.1 +pytest-asyncio==0.23.6 +pytest-cov==5.0.0 PyYAML==6.0.1 readme_renderer==43.0 redis==5.1.0b4 @@ -49,16 +53,17 @@ rfc3986==2.0.0 rich==13.7.1 ruamel.yaml==0.18.6 ruamel.yaml.clib==0.2.8 -safety==3.0.1 +safety==3.1.0 safety-schemas==0.0.2 -setuptools==69.1.1 +setuptools==69.2.0 +shellingham==1.5.4 stevedore==5.2.0 twine==5.0.0 -typer==0.9.0 -types-pyOpenSSL==24.0.0.20240228 -types-redis==4.6.0.20240218 -typing_extensions==4.10.0 +typer==0.12.1 +types-pyOpenSSL==24.0.0.20240311 +types-redis==4.6.0.20240311 +typing_extensions==4.11.0 urllib3==2.2.1 uvloop==0.19.0 -wheel==0.42.0 -zipp==3.17.0 +wheel==0.43.0 +zipp==3.18.1 diff --git a/tests/test_base.py b/tests/test_base.py index 6ef1a74c..9d6af81f 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -129,7 +129,7 @@ def test_randomkeyerror_repr(redis: Redis) -> None: f'RandomKeyError(redis=)>)>, key=None)' ) else: # pragma: no cover - pytest.fail(msg='RandomKeyError not raised') + pytest.fail(reason='RandomKeyError not raised') class TestEncodable: diff --git a/tests/test_dict.py b/tests/test_dict.py index 891a5a01..69ba39ec 100644 --- a/tests/test_dict.py +++ b/tests/test_dict.py @@ -71,7 +71,7 @@ def test_keyexistserror_repr(redis: Redis) -> None: f"KeyExistsError(redis=)>)>, key='pottery:tel')" ) else: # pragma: no cover - pytest.fail(msg='KeyExistsError not raised') + pytest.fail(reason='KeyExistsError not raised') def test_basic_usage(redis: Redis) -> None: