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
After updating to darwin-py==0.8.62 I get the following error:
File "/home/robin/safi/remote-inspection/.venv/lib/python3.10/site-packages/darwin/__init__.py", line 4, in <module>
from .client import Client # noqa
File "/home/robin/safi/remote-inspection/.venv/lib/python3.10/site-packages/darwin/client.py", line 14, in <module>
from darwin.backend_v2 import BackendV2
File "/home/robin/safi/remote-inspection/.venv/lib/python3.10/site-packages/darwin/backend_v2.py", line 6, in <module>
from tenacity import RetryCallState, retry, stop_after_attempt, wait_exponential_jitter
File "/home/robin/safi/remote-inspection/.venv/lib/python3.10/site-packages/tenacity/__init__.py", line 653, in <module>
from tenacity.asyncio import AsyncRetrying # noqa:E402,I100
ModuleNotFoundError: No module named 'tenacity.asyncio'
with tenacity==8.4.0
The text was updated successfully, but these errors were encountered:
Hi @rob-safi! Thanks for raising this. This was due to an issue with the latest version of the tenacity library (8.4.0) which was released this morning and added as a dependency to darwin-py in 0.8.62: jd/tenacity#471
The issue has since been patched in 8.4.1, which if you attempt to re-install darwin-py==0.8.62, will now be installed, avoiding the issue
To prevent this from happening again, in the DAR-2640 branch we've locked tenacity to 8.3.0. This will be included in the next release of darwin-py
After updating to
darwin-py==0.8.62
I get the following error:with
tenacity==8.4.0
The text was updated successfully, but these errors were encountered: