From dc21155618b95e4bd0747abcf2cfd432da4c4b40 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Mon, 8 Jan 2024 12:20:38 -0500 Subject: [PATCH] chore:update dependencies --- poetry.lock | 16 ++++++++-------- pyproject.toml | 2 +- scripts/generate_command_info.py | 2 -- test/test_redis_asyncio.py | 3 ++- 4 files changed, 11 insertions(+), 12 deletions(-) diff --git a/poetry.lock b/poetry.lock index 4c672761..57a72a07 100644 --- a/poetry.lock +++ b/poetry.lock @@ -594,19 +594,19 @@ testing = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "diff-cover (>=7.5)", "p [[package]] name = "flake8" -version = "6.1.0" +version = "7.0.0" description = "the modular source code checker: pep8 pyflakes and co" optional = false python-versions = ">=3.8.1" files = [ - {file = "flake8-6.1.0-py2.py3-none-any.whl", hash = "sha256:ffdfce58ea94c6580c77888a86506937f9a1a227dfcd15f245d694ae20a6b6e5"}, - {file = "flake8-6.1.0.tar.gz", hash = "sha256:d5b3857f07c030bdb5bf41c7f53799571d75c4491748a3adcd47de929e34cd23"}, + {file = "flake8-7.0.0-py2.py3-none-any.whl", hash = "sha256:a6dfbb75e03252917f2473ea9653f7cd799c3064e54d4c8140044c5c065f53c3"}, + {file = "flake8-7.0.0.tar.gz", hash = "sha256:33f96621059e65eec474169085dc92bf26e7b2d47366b70be2f67ab80dc25132"}, ] [package.dependencies] mccabe = ">=0.7.0,<0.8.0" pycodestyle = ">=2.11.0,<2.12.0" -pyflakes = ">=3.1.0,<3.2.0" +pyflakes = ">=3.2.0,<3.3.0" [[package]] name = "flake8-pyproject" @@ -1104,13 +1104,13 @@ files = [ [[package]] name = "pyflakes" -version = "3.1.0" +version = "3.2.0" description = "passive checker of Python programs" optional = false python-versions = ">=3.8" files = [ - {file = "pyflakes-3.1.0-py2.py3-none-any.whl", hash = "sha256:4132f6d49cb4dae6819e5379898f2b8cce3c5f23994194c24b77d5da2e36f774"}, - {file = "pyflakes-3.1.0.tar.gz", hash = "sha256:a0aae034c444db0071aa077972ba4768d40c830d9539fd45bf4cd3f8f6992efc"}, + {file = "pyflakes-3.2.0-py2.py3-none-any.whl", hash = "sha256:84b5be138a2dfbb40689ca07e2152deb896a65c3a3e24c251c5c62489568074a"}, + {file = "pyflakes-3.2.0.tar.gz", hash = "sha256:1c61603ff154621fb2a9172037d84dca3500def8c8b630657d1701f026f8af3f"}, ] [[package]] @@ -1894,4 +1894,4 @@ lua = ["lupa"] [metadata] lock-version = "2.0" python-versions = "^3.7" -content-hash = "85d086009893cf814d3f8c9f27fe5177790e8a06176db96367ac1b94e65969d7" +content-hash = "52e508c2d54eb9617d2efa95d073d83d7ba3d155e9e4123ef0073fc7aa9bf5e7" diff --git a/pyproject.toml b/pyproject.toml index e5ae8328..e845330b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ bf = ["pybloom-live"] [tool.poetry.dev-dependencies] coverage = "^7" -flake8 = { version = "^6.1", python = ">=3.8.1" } +flake8 = { version = "^7", python = ">=3.8.1" } flake8-pyproject = { version = "^1", python = ">=3.8.1" } hypothesis = "^6.70" mypy = "^1" diff --git a/scripts/generate_command_info.py b/scripts/generate_command_info.py index d62398a3..7eaed586 100644 --- a/scripts/generate_command_info.py +++ b/scripts/generate_command_info.py @@ -20,8 +20,6 @@ import os from typing import Any, List, Dict -import requests - from fakeredis._commands import SUPPORTED_COMMANDS from scripts.generate_supported_commands_doc import METADATA, download_single_stack_commands diff --git a/test/test_redis_asyncio.py b/test/test_redis_asyncio.py index 826a33e5..1f62d1ca 100644 --- a/test/test_redis_asyncio.py +++ b/test/test_redis_asyncio.py @@ -232,7 +232,8 @@ async def test_repr_redis_until_51(req_aioredis2: redis.asyncio.Redis): @testtools.run_test_if_redispy_ver('gte', '5.1') async def test_repr_redis_51(req_aioredis2: redis.asyncio.Redis): assert re.fullmatch( - r',db=0)>)>', + r',db=0)>)>', repr(req_aioredis2.connection_pool) )