File tree 5 files changed +15
-18
lines changed
5 files changed +15
-18
lines changed Original file line number Diff line number Diff line change 1
1
## Upcoming
2
2
3
3
- Remove 3.7 compatibility for typing_extensions.final/Literal
4
+ - Bump protobuf to 4.25.3
4
5
5
6
## 3.5.0
6
7
Original file line number Diff line number Diff line change @@ -16,16 +16,16 @@ See [Changelog](CHANGELOG.md) for recent changes.
16
16
Earlier releases might work, but aren't tested
17
17
18
18
- [ 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
20
20
- [ python >= 3.8] ( https://www.python.org/downloads/source/ ) - for running mypy-protobuf plugin.
21
21
22
22
## Requirements to run typecheckers on stubs generated by mypy-protobuf
23
23
24
24
Earlier releases might work, but aren't tested
25
25
26
26
- [ 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
29
29
30
30
### To run typecheckers on code generated with grpc plugin - you'll additionally need
31
31
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ py_modules =
15
15
mypy_protobuf.main
16
16
mypy_protobuf.extensions_pb2
17
17
install_requires =
18
- protobuf>=4.23.4
19
- types-protobuf>=4.23.0.2
18
+ protobuf>=4.25.3
19
+ types-protobuf>=4.24
20
20
python_requires = >=3.8
21
21
22
22
[options.entry_points]
Original file line number Diff line number Diff line change 1
1
# Requirements to run unit tests. Tests import from
2
2
# generated code.
3
- protobuf==4.23.4
3
+ protobuf==4.25.3
4
4
pytest==7.4.3
5
5
pytest-asyncio==0.20.3
6
6
grpc-stubs==1.53.0.2
7
7
grpcio-tools==1.56.2
8
- types-protobuf==4.23.0.2
8
+ types-protobuf==4.24
You can’t perform that action at this time.
0 commit comments