Skip to content

Commit 2cc7689

Browse files
authored
switch to py 3.13 (#13)
2 parents 029b79f + a378399 commit 2cc7689

File tree

5 files changed

+6
-58
lines changed

5 files changed

+6
-58
lines changed

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Python 3",
3-
"image": "mcr.microsoft.com/devcontainers/python:3.12-bullseye",
3+
"image": "mcr.microsoft.com/devcontainers/python:3.13-bullseye",
44
"features": {
55
"ghcr.io/devcontainers-contrib/features/pre-commit:2": {},
66
"ghcr.io/devcontainers-contrib/features/poetry:2": {},

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-python@v5
2020
with:
21-
python-version: "3.12"
21+
python-version-file: "pyproject.toml"
2222
- uses: pre-commit/[email protected]
2323
tests:
2424
name: Tests
@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup Python
4242
uses: actions/setup-python@v5
4343
with:
44-
python-version: "3.12"
44+
python-version-file: "pyproject.toml"
4545
- name: Install uv
4646
uses: astral-sh/setup-uv@v5
4747
with:

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
## base image
4-
FROM python:3.12-slim AS base
4+
FROM python:3.13-slim AS base
55

66
ENV PYTHONUNBUFFERED=1 \
77
PYTHONDONTWRITEBYTECODE=1 \

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77
{name = "Brian Rosner", email = "[email protected]"},
88
]
99
license = {text = "MIT"}
10-
requires-python = "<4.0,>=3.12"
10+
requires-python = "<4.0,>=3.13"
1111
dependencies = [
1212
"click<9.0.0,>=8.1.7",
1313
"gunicorn<23.0.0,>=22.0.0",

0 commit comments

Comments
 (0)