Skip to content

Commit 6b6eece

Browse files
committed
Update aiohttp to avoid CVE; refresh other python deps
Signed-off-by: Nick Hill <[email protected]>
1 parent 682e57a commit 6b6eece

File tree

6 files changed

+613
-582
lines changed

6 files changed

+613
-582
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.62.1 mypy-protobuf==3.5.0 'types-protobuf>=3.20.4' --no-cache-dir
3+
pip install grpcio-tools==1.62.2 mypy-protobuf==3.5.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: 138 additions & 122 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.11"
99

1010
[tool.poetry.group.dev.dependencies]
1111
protobuf = "^4.25.3"
12-
grpcio-tools = "^1.62.1"
12+
grpcio-tools = "^1.62.2"
1313
pytest = "^8.1.1"
1414
pytest-asyncio = "^0.23.6"
1515
requests = "^2.31.0"

server/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ all: install run-dev
44
.PHONY: gen-server
55
gen-server:
66
# Compile protos
7-
pip install grpcio-tools==1.62.1 mypy-protobuf==3.5.0 'types-protobuf>=3.20.4' --no-cache-dir
7+
pip install grpcio-tools==1.62.2 mypy-protobuf==3.5.0 'types-protobuf>=3.20.4' --no-cache-dir
88
mkdir -p text_generation_server/pb
99
python -m grpc_tools.protoc -I../proto \
1010
--python_out=text_generation_server/pb \

0 commit comments

Comments
 (0)