aIbrahiim commented on code in PR #38090:
URL: https://github.com/apache/beam/pull/38090#discussion_r3053208760
##########
sdks/python/setup.py:
##########
@@ -185,7 +185,7 @@ def cythonize(*args, **kwargs):
]
ml_adk_dependency = [
- 'google-adk==1.17.0',
+ 'google-adk==1.28.1',
'opentelemetry-api==1.37.0',
'opentelemetry-sdk==1.37.0',
'opentelemetry-exporter-otlp-proto-http==1.37.0',
Review Comment:
Pip was handling it, it ended in ResolutionImpossible / a hard conflict, not
a wrong install and the 1.40.x side was coming from
opentelemetry-exporter-otlp-proto-http (e.g. 1.40.0 wants
opentelemetry-sdk~=1.40). google-adk meanwhile pins opentelemetry-sdk to
1.37.x, so theres no single version of the SDK that satisfies both so pip can’t
merge those, it just fails unless we pin the exporter (and api) to the same
minor as ADK’s SDK so nothing pulls 1.40.x into the graph
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]