Update redis dependency version in pyproject.toml to <8.0.0#747
Update redis dependency version in pyproject.toml to <8.0.0#747abrookins merged 2 commits intoredis:mainfrom
Conversation
|
Hi, I’m Jit, a friendly security platform designed to help developers build secure applications from day zero with an MVS (Minimal viable security) mindset. In case there are security findings, they will be communicated to you as a comment inside the PR. Hope you’ll enjoy using Jit. Questions? Comments? Want to learn more? Get in touch with us. |
|
it seems there is an incompatibility with only python 3.10 tests... Extracted from redis-py main if sys.version_info.major >= 3 and sys.version_info.minor >= 11:
from asyncio import timeout as async_timeout
else:
from async_timeout import timeout as async_timeout |
There was a problem hiding this comment.
Thanks for this PR! The change is correct.
The CI failures on Python 3.10 and pypy-3.10 are not caused by your PR - they're due to a pre-existing bug in our CI workflow where the cache key doesn't include the Python version. This causes a venv built for Python 3.11+ (which doesn't need async-timeout) to be restored for Python 3.10 (which does need it). At least, I think that's the problem. 😅
I'll fix the CI issue separately and then merge this.
|
Thanks again, @bonastreyair! |
To be able to accept recent versions of 7.x of the redis client released since Oct 22, 2025.