Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ pytest>=6.0
pytest-cov>=2.8
readme-renderer~=24.0
grpcio-tools==1.29.0
mypy-protobuf==1.21
protobuf==3.12.2
mypy-protobuf>=1.23
protobuf>=3.13.0
2 changes: 1 addition & 1 deletion docs/examples/opentelemetry-example-app/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ install_requires =
opentelemetry-instrumentation-flask == 0.16.dev0
flask
requests
protobuf~=3.11
protobuf>=3.13.0

[options.packages.find]
where = src
Expand Down
3 changes: 3 additions & 0 deletions exporter/opentelemetry-exporter-opencensus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Update protobuf versions
([#1356](https://github.com/open-telemetry/opentelemetry-python/pull/1356))

## Version 0.13b0

Released 2020-09-17
Expand Down
2 changes: 1 addition & 1 deletion exporter/opentelemetry-exporter-opencensus/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ install_requires =
opencensus-proto >= 0.1.0, < 1.0.0
opentelemetry-api == 0.16.dev0
opentelemetry-sdk == 0.16.dev0
protobuf >= 3.8.0
protobuf >= 3.13.0

[options.packages.find]
where = src
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Update protobuf versions
([#1356](https://github.com/open-telemetry/opentelemetry-python/pull/1356))

## Version 0.13b0

Released 2020-09-17
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ install_requires =
test =
opentelemetry-test == 0.16.dev0
opentelemetry-sdk == 0.16.dev0
protobuf == 3.12.2
protobuf >= 3.13.0

[options.packages.find]
where = src
Expand Down
3 changes: 3 additions & 0 deletions opentelemetry-proto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Update protobuf versions
([#1356](https://github.com/open-telemetry/opentelemetry-python/pull/1356))

## Version 0.13b0

Released 2020-09-17
Expand Down
2 changes: 1 addition & 1 deletion opentelemetry-proto/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ packages=find_namespace:
zip_safe = False
include_package_data = True
install_requires =
protobuf~=3.12.2

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might the ~= be better throughout?

protobuf>=3.13.0

[options.packages.find]
where = src
Expand Down