-
-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for redis > 5.0.x in pyproject.toml? #458
Comments
It seems that with 0.26 release, the
whereas 0.25 was:
So I was also surprised to have a conflict this morning when I tried to upgrade from 0.25 to 0.26 ! |
Yeah, I'll third wanting this dependency changed! The dependency check for <5 also limits us to redis versions under 7, locking us out of the toys included in 7.2 or 7.4. |
@d-qoi the 5 is the version of the redis-py library, not a requirement on the redis server. You can use redis-py 5.x with Redis 7.x But in your case, maybe redis-py 4.x has some limitations regarding Redis 7.x - in this case, you can start with arq 0.25 to bypass the issue (no issue with the combo arq 0.25/redis-py 5.0.x since 5.0.x upgrade last summer - even if first 5.0.x versions had some issues on async side but it's fixed for a while) |
my codebase depends on redis ^5.0.1 and I'm unable to use the latest version of arq with it
redis = {extras = ["hiredis"], version = "^5.0.1"}
Any chance the version pinning can support updates to the 5.0.x track rather than locking to 5.0.0?
Another comment on github requesting this for a slightly different reason: #441 (comment)
The text was updated successfully, but these errors were encountered: