Skip to content

Commit 363b350

Browse files
authored
Bump protobuf to 4.25.3 (#582)
1 parent 94d64e4 commit 363b350

File tree

5 files changed

+15
-18
lines changed

5 files changed

+15
-18
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## Upcoming
22

33
- Remove 3.7 compatibility for typing_extensions.final/Literal
4+
- Bump protobuf to 4.25.3
45

56
## 3.5.0
67

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ See [Changelog](CHANGELOG.md) for recent changes.
1616
Earlier releases might work, but aren't tested
1717

1818
- [protoc >= 23.4](https://github.com/protocolbuffers/protobuf/releases)
19-
- [python-protobuf >= 4.23.4](https://pypi.org/project/protobuf/) - matching protoc release
19+
- [python-protobuf >= 4.25.3](https://pypi.org/project/protobuf/) - matching protoc release
2020
- [python >= 3.8](https://www.python.org/downloads/source/) - for running mypy-protobuf plugin.
2121

2222
## Requirements to run typecheckers on stubs generated by mypy-protobuf
2323

2424
Earlier releases might work, but aren't tested
2525

2626
- [mypy >= v1.4.1](https://pypi.org/project/mypy) or [pyright >= 1.1.206](https://github.com/microsoft/pyright)
27-
- [python-protobuf >= 4.23.4](https://pypi.org/project/protobuf/) - matching protoc release
28-
- [types-protobuf >= 4.23.0.2](https://pypi.org/project/types-protobuf/) - for stubs from the google.protobuf library
27+
- [python-protobuf >= 4.25.3](https://pypi.org/project/protobuf/) - matching protoc release
28+
- [types-protobuf >= 4.24](https://pypi.org/project/types-protobuf/) - for stubs from the google.protobuf library
2929

3030
### To run typecheckers on code generated with grpc plugin - you'll additionally need
3131

mypy_protobuf/extensions_pb2.py

+7-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ py_modules =
1515
mypy_protobuf.main
1616
mypy_protobuf.extensions_pb2
1717
install_requires =
18-
protobuf>=4.23.4
19-
types-protobuf>=4.23.0.2
18+
protobuf>=4.25.3
19+
types-protobuf>=4.24
2020
python_requires = >=3.8
2121

2222
[options.entry_points]

test_requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Requirements to run unit tests. Tests import from
22
# generated code.
3-
protobuf==4.23.4
3+
protobuf==4.25.3
44
pytest==7.4.3
55
pytest-asyncio==0.20.3
66
grpc-stubs==1.53.0.2
77
grpcio-tools==1.56.2
8-
types-protobuf==4.23.0.2
8+
types-protobuf==4.24

0 commit comments

Comments
 (0)