-
Notifications
You must be signed in to change notification settings - Fork 6
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
from aioredis change to redis #4
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! A couple of changes are required, then I can merge.
pyproject.toml
Outdated
@@ -58,13 +58,13 @@ warn_unused_ignores = true | |||
[tool.poetry.dependencies] | |||
python = ">=3.7" | |||
quart = ">=0.15" | |||
aioredis = { version = ">=2.0", optional = true } | |||
redis = ">=4.4.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This still needs to be optional
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as in,
redis = { version = ">=4.4.0", optional = true }
with the aioredis line removed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK
CHANGELOG.rst
Outdated
@@ -7,7 +7,7 @@ | |||
0.6.0 2021-09-04 | |||
---------------- | |||
|
|||
* Support aioredis >= 2.0. | |||
* Support redis >= 4.4.0. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line can't be changed (0.6.0 has been released), a new changelog entry needs to be created instead.
Thanks! I have corrected the mistake you mentioned, please check again to see if there are other problems |
aioredis is no longer maintained, so switch to redis
aioredis is no longer maintained, so switch to redis
https://github.com/redis/redis-py/releases/tag/v4.2.0rc1
PR