Skip to content

Attempt to fix CI errors #3292

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion Dockerfile_amd
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ COPY proto proto
COPY server server
COPY server/Makefile server/Makefile
RUN cd server && \
uv pip install grpcio-tools mypy-protobuf && \
uv pip install "grpcio-tools>=1.67.0,<1.73.0" "grpcio>=1.67.0,<1.73.0" mypy-protobuf && \
uv pip install -e ".[accelerate, compressed-tensors, peft, outlines]" --no-cache-dir && \
make gen-server-raw
RUN cd server && \
Expand Down
8 changes: 4 additions & 4 deletions server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ dependencies = [
"click<8.2.0",
"einops>=0.8.0",
"grpc-interceptor>=0.15.4",
"grpcio>=1.67.0",
"grpcio-reflection>=1.67.0",
"grpcio-status>=1.67.0",
"grpcio>=1.67.0,<1.73.0",
"grpcio-reflection>=1.67.0,<1.73.0",
"grpcio-status>=1.67.0,<1.73.0",
"kernels>=0.2.1",
"hf-transfer>=0.1.8",
"loguru>=0.7.3",
Expand Down Expand Up @@ -80,7 +80,7 @@ peft = [
"peft>=0.14.0",
]
outlines = [
"outlines>=0.1.13",
"outlines>=0.1.13,<1.0",
]
dev = [
"grpcio-tools>=1.51.1,<2.0",
Expand Down
Loading