Skip to content

Commit 3950be5

Browse files
committed
Update to all dependencies including Python 3.13.
1 parent c2812cc commit 3950be5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.basedpyright.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"typeCheckingMode": "strict",
55
"reportMissingTypeStubs": false,
66
"reportUnknownVariableType": false,
7-
"pythonVersion": "3.12",
7+
"pythonVersion": "3.13",
88
"pythonPlatform": "All",
99
"extraPaths": ["src"],
1010
"executionEnvironments": [
1111
{
1212
"root": ".",
13-
"pythonVersion": "3.12",
13+
"pythonVersion": "3.13",
1414
"pythonPlatform": "All",
1515
"extraPaths": ["src"]
1616
}

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Set up Python
3131
uses: actions/setup-python@v6
3232
with:
33-
python-version: "3.12"
33+
python-version: "3.13"
3434

3535
- name: Install build dependencies
3636
run: |

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12
1+
3.13

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
2525
FROM python:3.13-slim-bookworm
2626
# It is important to use the image that matches the builder, as the path to the
2727
# Python executable must be the same, e.g., using `python:3.12-slim-bookworm`
28-
# will fail.
28+
# instead of `python:3.13-slim-bookworm` will fail.
2929

3030
# Security: Create non-root user
3131
RUN groupadd -r app && useradd -r -g app -u 1000 app

pyrightconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"typeCheckingMode": "strict",
55
"reportMissingTypeStubs": false,
66
"reportUnknownVariableType": false,
7-
"pythonVersion": "3.12",
7+
"pythonVersion": "3.13",
88
"pythonPlatform": "All"
99
}
1010

0 commit comments

Comments
 (0)