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:
parent
4661459ddd
commit
a00a68b414
5 changed files with 171 additions and 395 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue