a caller passing the driver-native timeout= (instead of pool_timeout=) would hit a cryptic 'multiple values for timeout' from BlockingConnectionPool. now raise a clear ValueError pointing at pool_timeout. verified vs real redis. README note added. bump v0.1.1 -> v0.1.2 Signed-off-by: disqualifier <dev@disqualifier.me>
16 lines
360 B
TOML
16 lines
360 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "redis_store"
|
|
version = "0.1.2"
|
|
description = "async redis wrapper over redis-py asyncio with a raw escape hatch, fail-loud and config-free"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"redis>=5",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/redis_store"]
|