Update deps
remove standard deps from uvicorn, we don't really need all of them, except maybe uvloop, but I don't see a difference.
This commit is contained in:
parent
90b02656a2
commit
e36d5effcf
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@ -8,7 +8,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python-version: ['3.11', '3.12', '3.13']
|
||||
python-version: ['3.11', '3.12', '3.13', '3.14']
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
FROM python:3.13-slim-bookworm
|
||||
FROM python:3.14-slim-trixie
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
media-types \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN python -m pip install "poetry==2.2.0"
|
||||
RUN python -m pip install "poetry==2.2.1"
|
||||
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
|
||||
1081
poetry.lock
generated
1081
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@ -7,8 +7,8 @@ requires-python = ">=3.11.0,<4.0"
|
||||
license = "MIT"
|
||||
dependencies = [
|
||||
"httpx[http2]>=0.28.1,<0.29",
|
||||
"fastapi>=0.117.0,<0.118",
|
||||
"uvicorn[standard]>=0.36.0,<0.37",
|
||||
"fastapi>=0.118.0,<0.119",
|
||||
"uvicorn>=0.37.0,<0.38",
|
||||
"jinja2>=3.1.2,<4",
|
||||
"fastapi-etag>=0.4.0,<0.5",
|
||||
"gunicorn>=23.0.0,<24",
|
||||
@ -17,13 +17,13 @@ dependencies = [
|
||||
"MarkupSafe>=3.0.2,<4",
|
||||
"uvicorn-worker>=0.4.0,<0.5",
|
||||
"packageurl-python>=0.17.0,<0.18",
|
||||
"pyzstd>=0.17.0,<0.18",
|
||||
"pyzstd>=0.18.0,<0.19",
|
||||
"mcp>=1.10.1,<2",
|
||||
]
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"reuse>=5.0.2,<6",
|
||||
"reuse>=6.0.0,<7",
|
||||
"mypy==1.18.2",
|
||||
"flake8>=7.0.0,<8",
|
||||
"pytest>=8.0.0,<9",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user