Add delete_many to support for bulk deletes (#305)

* Add support for bulk deletes

* linters

* linters

* fix review comments

* update more-itertools version

* poetry fix - maybe?

* merge main & add more-itertools 8.14.0

* update poetry.lock

* linters

* fix test

Co-authored-by: Chayim I. Kirshen <c@kirshen.com>
This commit is contained in:
dvora-h 2022-08-10 16:22:27 +03:00 committed by GitHub
parent 4661459ddd
commit a00a68b414
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 171 additions and 395 deletions

View file

@ -22,8 +22,9 @@ include=[
]
[tool.poetry.dependencies]
python = "^3.7"
redis = ">=4.2.0,<5.0.0"
python = "^3.7,<=3.11"
redis = ">=3.5.3,<5.0.0"
aioredis = "^2.0.0"
pydantic = "^1.8.2"
click = "^8.0.1"
pptree = "^3.1"
@ -33,6 +34,7 @@ python-ulid = "^1.0.3"
cleo = "1.0.0a5"
typing-extensions = "^4.0.0"
hiredis = "^2.0.0"
more-itertools = "^8.14.0"
[tool.poetry.dev-dependencies]
mypy = "^0.971"