File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM python:3.10 AS builder
1+ FROM python:3.13 AS builder
22
33COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
44COPY pyproject.toml .
@@ -16,15 +16,17 @@ ENV NODE_ENV=production
1616
1717RUN npm ci --also=dev && npx tailwindcss -i src/tailwind.css -c tailwind.config.js -o dist/main.css --minify
1818
19- FROM python:3.10 AS docs
19+ FROM python:3.13-slim AS docs
20+
21+ RUN apt-get update -y && apt-get install -y git
2022
2123COPY build wrk/build
2224WORKDIR /wrk/build
2325
2426RUN pip install pyyaml
2527RUN python docs.py
2628
27- FROM python:3.10 -slim
29+ FROM python:3.13 -slim
2830
2931COPY --from=builder /.venv /.venv
3032ENV PATH=/.venv/bin:$PATH
Original file line number Diff line number Diff line change @@ -3,15 +3,12 @@ name = "emmett-website"
33version = " 0.1.0"
44description = " "
55readme = " README.md"
6- requires-python = " ~=3.10 .0"
6+ requires-python = " ~=3.13 .0"
77
88dependencies = [
9- " emmett[uvloop ]~=2.7.0" ,
9+ " emmett[rloop ]~=2.7.0" ,
1010 " emmett-haml~=1.0" ,
1111 " emmett-sentry~=0.8.2" ,
1212 " markdown2~=2.3.8" ,
1313 " pygments~=2.6.1" ,
1414]
15-
16- [tool .uv ]
17- prerelease = " allow"
You can’t perform that action at this time.
0 commit comments