You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in [tool.poetry.dependencies] you have fakeredis (also as a optional dep), but in the library code you do not use it. Also, fakeredis is already part of the [tool.poetry.dev-dependencies] (where it belongs). here
aioredis is only part of [tool.poetry.dev-dependencies], even though it is used in email_check - making that part of the code unusable for external projects (except they install aioredis themself as a peer dependency)
Thanks again for the library!
The text was updated successfully, but these errors were encountered:
Ups, that that fakeredis was not suppose to be optional, I misconfigured it. aioredis must be the optional to be installed.
Meaning both httpx and aioredis can be installed as an extra dependency. When installing fastapi-mail it wont be installed. Those should be installed with the following commands:
Hi there, agian :D
I think there might be some dependency hiccups:
[tool.poetry.dependencies]
you havefakeredis
(also as a optional dep), but in the library code you do not use it. Also,fakeredis
is already part of the[tool.poetry.dev-dependencies]
(where it belongs). hereaioredis
is only part of[tool.poetry.dev-dependencies]
, even though it is used inemail_check
- making that part of the code unusable for external projects (except they install aioredis themself as a peer dependency)Thanks again for the library!
The text was updated successfully, but these errors were encountered: