Skip to content

Commit

Permalink
chore:update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Jan 8, 2024
1 parent c2c1676 commit dc21155
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
16 changes: 8 additions & 8 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 0 additions & 2 deletions scripts/generate_command_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion test/test_redis_asyncio.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'<redis.asyncio.connection.ConnectionPool(<fakeredis.aioredis.FakeConnection(server=<fakeredis._server.FakeServer object at .*>,db=0)>)>',
r'<redis.asyncio.connection.ConnectionPool('
r'<fakeredis.aioredis.FakeConnection(server=<fakeredis._server.FakeServer object at .*>,db=0)>)>',
repr(req_aioredis2.connection_pool)
)

Expand Down

0 comments on commit dc21155

Please sign in to comment.