@@ -181,7 +181,6 @@ def cythonize(*args, **kwargs):
181181 'sentence-transformers>=2.2.2' ,
182182 'skl2onnx' ,
183183 'pyod>=0.7.6' , # 0.7.5 crashes setuptools
184- 'contourpy<1.3.0; python_version < "3.11"' ,
185184 'tensorflow' ,
186185 # tensorflow transitive dep, lower versions not compatible with Python3.10+
187186 'absl-py>=0.12.0' ,
@@ -208,15 +207,13 @@ def cythonize(*args, **kwargs):
208207]
209208
210209ml_adk_dependency = [
211- # google-adk is excluded here because it requires google-genai<2.0.0,
212- # which conflicts with google-genai>=2.0.0 (e.g. 2.6.0) pinned in containers.
213- # 'google-adk==1.28.1',
210+ 'google-adk==1.28.1' ,
214211 # proto-plus<1.24 caps protobuf<5; opentelemetry-proto (via ADK) needs
215212 # protobuf>=5. Scoped here so the main dependency list stays broader.
216213 'proto-plus>=1.26.1,<2' ,
217- 'opentelemetry-api>= 1.37.0,<2 ' ,
218- 'opentelemetry-sdk>= 1.37.0,<2 ' ,
219- 'opentelemetry-exporter-otlp-proto-http>= 1.37.0,<2 ' ,
214+ 'opentelemetry-api== 1.37.0' ,
215+ 'opentelemetry-sdk== 1.37.0' ,
216+ 'opentelemetry-exporter-otlp-proto-http== 1.37.0' ,
220217 # protobuf>=5 (ADK/OTel); tf2onnx 1.16.x pins protobuf~=3.20 only.
221218 'tf2onnx>=1.17.0,<1.18' ,
222219]
@@ -420,7 +417,6 @@ def get_portability_package_data():
420417 ext_modules = extensions ,
421418 install_requires = [
422419 'cryptography>=39.0.0,<48.0.0' ,
423- 'aiohttp<4.0.0' ,
424420 'envoy-data-plane>=1.0.3,<2; python_version >= "3.11"' ,
425421 # Newer version only work on Python 3.11. Versions 0.3 <= ver < 1.x
426422 # conflict with other GCP dependencies.
@@ -612,11 +608,10 @@ def get_portability_package_data():
612608 ] + ml_base_core ,
613609 'p310_ml_test' : [
614610 'datatable' ,
615- 'dill' ,
616- 'tensorflow_transform>=1.14.0,<1.15.0' ,
617611 ] + ml_base ,
618- 'p311_ml_test' : ml_base ,
619- 'p312_ml_test' : ml_base ,
612+ 'p312_ml_test' : [
613+ 'datatable' ,
614+ ] + ml_base ,
620615 # maintainer: milvus tests only run with this extension. Make sure it
621616 # is covered by docker-in-docker test when changing py version
622617 'p313_ml_test' : ml_base + milvus_dependency ,
@@ -690,8 +685,7 @@ def get_portability_package_data():
690685 'xgboost' : ['xgboost>=1.6.0,<2.1.3' , 'datatable==1.0.0' ],
691686 'tensorflow-hub' : ['tensorflow-hub>=0.14.0,<0.16.0' ],
692687 'milvus' : milvus_dependency ,
693- 'vllm' : ['openai==1.107.1' , 'vllm==0.10.1.1' , 'triton==3.3.1' ],
694- 'adk' : ['google-adk==1.28.1' ]
688+ 'vllm' : ['openai==1.107.1' , 'vllm==0.10.1.1' , 'triton==3.3.1' ]
695689 },
696690 zip_safe = False ,
697691 # PyPI package information.
0 commit comments