File tree Expand file tree Collapse file tree
opentelemetry-sdk/src/opentelemetry/sdk/resources Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,6 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3838 ([#5120](https://github.com/open-telemetry/opentelemetry-python/pull/5120))
3939- Add WeaverLiveCheck test util
4040 ([#5088](https://github.com/open-telemetry/opentelemetry-python/pull/5088))
41+ - Fix incorrect type annotation on `detectors` parameter of `get_aggregated_resources`
42+ ([#5135](https://github.com/open-telemetry/opentelemetry-python/pull/5135))
4143- ci: wait for tracecontext server readiness instead of a fixed sleep in `scripts/tracecontext-integration-test.sh`
4244 ([#5149](https://github.com/open-telemetry/opentelemetry-python/pull/5149))
4345
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ requests==2.32.3
1414ruamel.yaml == 0.17.21
1515asgiref == 3.7.2
1616psutil == 7.2.2
17- GitPython == 3.1.41
17+ GitPython == 3.1.47
1818pre-commit == 3.7.0
1919ruff == 0.14.1
Original file line number Diff line number Diff line change 6767import socket
6868import sys
6969import typing
70+ from collections .abc import Sequence
7071from json import dumps
7172from os import environ
7273from types import ModuleType
@@ -515,7 +516,7 @@ def detect(self) -> "Resource":
515516
516517
517518def get_aggregated_resources (
518- detectors : list ["ResourceDetector" ],
519+ detectors : Sequence ["ResourceDetector" ],
519520 initial_resource : Resource | None = None ,
520521 timeout : int = 5 ,
521522) -> "Resource" :
Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ commands_post =
344344[testenv:public-symbols-check]
345345recreate = True
346346deps =
347- GitPython ==3.1.40
347+ GitPython ==3.1.47
348348 griffe ==1.7.3
349349 toml
350350commands =
You can’t perform that action at this time.
0 commit comments