Skip to content

Commit

Permalink
Loosen dependency on backoff for newer Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
hannseman committed May 31, 2022
1 parent cad776a commit 3d27433
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#2714](https://github.com/open-telemetry/opentelemetry-python/pull/2714))
- narrow protobuf dependencies to exclude protobuf >= 4
([#2720](https://github.com/open-telemetry/opentelemetry-python/pull/2720))
- Loosen dependency on `backoff` for newer Python versions
([#2726](https://github.com/open-telemetry/opentelemetry-python/pull/2726))

## [1.12.0rc1-0.31b0](https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.12.0rc1-0.31b0) - 2022-05-17

Expand Down
3 changes: 2 additions & 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,8 @@ install_requires =
opentelemetry-api ~= 1.3
opentelemetry-sdk ~= 1.11
opentelemetry-proto == 1.12.0rc1
backoff >= 1.10.0, < 2.0.0
backoff >= 1.10.0, < 2.0.0; python_version<'3.7'
backoff >= 1.10.0, < 3.0.0; python_version>='3.7'

[options.extras_require]
test =
Expand Down
3 changes: 2 additions & 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,8 @@ install_requires =
opentelemetry-api ~= 1.3
opentelemetry-sdk ~= 1.11
opentelemetry-proto == 1.12.0rc1
backoff >= 1.10.0, < 2.0.0
backoff >= 1.10.0, < 2.0.0; python_version<'3.7'
backoff >= 1.10.0, < 3.0.0; python_version>='3.7'

[options.extras_require]
test =
Expand Down

0 comments on commit 3d27433

Please sign in to comment.