-
-
Notifications
You must be signed in to change notification settings - Fork 282
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
ImportError tenacity.asyncio #471
Comments
Facing the same issue, seems to be related to a change made in a recent PR |
I encountered that error too. This issue can be temporarily worked around by installing older. pip install 'tenacity==8.3.0' |
Also getting this error, fixed by update requirements.txt |
Strange that CI didn't catch it right? |
Hey same error here in a AWS lambda using python 3.12, I didn't encounter it last week :-/
Thanks @Peelz for the workaround |
Encountered the same issue. It looks like the
|
pin tenacity to < 8.4.0 as a hotfix for jd/tenacity#471
yes, comparing with a previous version (8.3.0), _asyncio.py is missing in the tenacity folder :/ |
The problem is with this line: Line 26 in 702014b
It isn't recursive so doesn't pick up the The fix is to either specify both packages manually:
or to let setuptools find the packages itself:
|
This bug prevents llama_index.core from functioning properly. |
Or @sileht ? |
Adding MANIFEST.in in root with: |
jd/tenacity#471 is fixed so we can stop requiring tenacity < 8.4.0 now
pin tenacity to < 8.4.0 as a hotfix for jd/tenacity#471
jd/tenacity#471 is fixed so we can stop requiring tenacity < 8.4.0 now
Using Python 3.11, and latest tenacity 8.4.0
The text was updated successfully, but these errors were encountered: