Skip to content

Commit

Permalink
[grpc exporter] Limit backoff version to < 2.0.0
Browse files Browse the repository at this point in the history
Fixes #2829.
  • Loading branch information
Yamakaky committed Aug 31, 2022
1 parent 0db9d19 commit 15957b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#2870](https://github.com/open-telemetry/opentelemetry-python/pull/2870))
- Fix: Remove `LogEmitter.flush()` to align with OTel Log spec
([#2863](https://github.com/open-telemetry/opentelemetry-python/pull/2863))
- Fix: Pin `backoff` dependency to < 2.0.0 version
([#2915](https://github.com/open-telemetry/opentelemetry-python/pull/2915))

## [1.12.0-0.33b0](https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.12.0) - 2022-08-08

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
]
dependencies = [
"backoff >= 1.10.0, < 2.0.0; python_version<'3.7'",
"backoff >= 1.10.0, < 3.0.0; python_version>='3.7'",
"backoff >= 1.10.0, < 2.0.0",
"googleapis-common-protos ~= 1.52",
"grpcio >= 1.0.0, < 2.0.0",
"opentelemetry-api ~= 1.3",
Expand Down

0 comments on commit 15957b5

Please sign in to comment.