Skip to content
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

Merged
merged 1 commit into from
Dec 23, 2022
Merged

from aioredis change to redis #4

merged 1 commit into from
Dec 23, 2022

Conversation

iasukas
Copy link
Contributor

@iasukas iasukas commented Dec 22, 2022

aioredis is no longer maintained, so switch to redis

https://github.com/redis/redis-py/releases/tag/v4.2.0rc1

PR

Copy link
Owner

@pgjones pgjones left a 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"
Copy link
Owner

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

Copy link
Owner

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.

Copy link
Contributor Author

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.
Copy link
Owner

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.

@iasukas
Copy link
Contributor Author

iasukas commented Dec 23, 2022

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants