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
This is mostly an FYI before the next OpenTelemetry release. ADK uses deprecated in a few places, but does not take a direct dependency on it in pyproject.toml e.g.
I believe it is only working through a transitive dependency on deprecated in OpenTelemetry. However this will be removed in the next release (open-telemetry/opentelemetry-python#4522) and users will see import errors.
You can use the new decorator from PEP702 (from typing_extensions import deprecated) like we did instead, or just add the dependency on Deprecated in pyproject.toml.
karthik-tirumala, Xlient, JoaquinMen, hborras, tempse and 1 more