Skip to content

Commit c002ad1

Browse files
committed
Update poetry dependencies
- Update grpc to 1.57.0 - Run poetry update to update lockfile with latest versions of all other dependencies Signed-off-by: Nick Hill <[email protected]>
1 parent 26edb07 commit c002ad1

File tree

6 files changed

+505
-484
lines changed

6 files changed

+505
-484
lines changed

integration_tests/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
gen-client:
22
# Compile protos
3-
pip install grpcio-tools==1.56.2 mypy-protobuf==3.4.0 'types-protobuf>=3.20.4' --no-cache-dir
3+
pip install grpcio-tools==1.57.0 mypy-protobuf==3.4.0 'types-protobuf>=3.20.4' --no-cache-dir
44
mkdir text_generation_tests/pb || true
55
python -m grpc_tools.protoc -I../proto --python_out=text_generation_tests/pb \
66
--grpc_python_out=text_generation_tests/pb --mypy_out=text_generation_tests/pb ../proto/generation.proto

integration_tests/poetry.lock

Lines changed: 204 additions & 133 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration_tests/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ python = "^3.9"
99

1010
[tool.poetry.group.dev.dependencies]
1111
protobuf = "^4.24.0"
12-
grpcio-tools = "^1.56.2"
12+
grpcio-tools = "^1.57.0"
1313
pytest = "^7.4.0"
1414
pytest-asyncio = "^0.21.1"
1515
requests = "^2.31.0"

server/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include Makefile-flash-att-v2
33

44
gen-server:
55
# Compile protos
6-
pip install grpcio-tools==1.56.2 mypy-protobuf==3.4.0 'types-protobuf>=3.20.4' --no-cache-dir
6+
pip install grpcio-tools==1.57.0 mypy-protobuf==3.4.0 'types-protobuf>=3.20.4' --no-cache-dir
77
mkdir text_generation_server/pb || true
88
python -m grpc_tools.protoc -I../proto --python_out=text_generation_server/pb \
99
--grpc_python_out=text_generation_server/pb --mypy_out=text_generation_server/pb ../proto/generate.proto

0 commit comments

Comments
 (0)