Skip to content

Commit

Permalink
Loosen up the dependency on backoff (#2575)
Browse files Browse the repository at this point in the history
  • Loading branch information
teddylear authored Mar 31, 2022
1 parent 450cce1 commit b2e9387
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#2566](https://github.com/open-telemetry/opentelemetry-python/pull/2566))
- Remove `enable_default_view` option from sdk MeterProvider
([#2547](https://github.com/open-telemetry/opentelemetry-python/pull/2547))
- Update otlp-proto-grpc and otlp-proto-http exporters to have more lax requirements for `backoff` lib
([#2575](https://github.com/open-telemetry/opentelemetry-python/pull/2575))

## [1.10.0-0.29b0](https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.10.0-0.29b0) - 2022-03-10

Expand Down
2 changes: 1 addition & 1 deletion exporter/opentelemetry-exporter-otlp-proto-grpc/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ install_requires =
opentelemetry-api ~= 1.3
opentelemetry-sdk ~= 1.10.0
opentelemetry-proto == 1.10.0
backoff ~= 1.10.0
backoff >= 1.10.0, < 2.0.0

[options.extras_require]
test =
Expand Down
2 changes: 1 addition & 1 deletion exporter/opentelemetry-exporter-otlp-proto-http/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ install_requires =
opentelemetry-api ~= 1.3
opentelemetry-sdk ~= 1.3
opentelemetry-proto == 1.10.0
backoff ~= 1.10.0
backoff >= 1.10.0, < 2.0.0

[options.extras_require]
test =
Expand Down

0 comments on commit b2e9387

Please sign in to comment.