Skip to content

Commit 8fb59bb

Browse files
Merge pull request #98 from VioletCranberry/chore/python-3.14
chore: move to python 3.14
2 parents 07e4183 + 4cd7627 commit 8fb59bb

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77

88
env:
9-
PYTHON_VERSION: "3.13"
9+
PYTHON_VERSION: "3.14"
1010

1111
jobs:
1212
changes:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
contents: read
1414

1515
env:
16-
PYTHON_VERSION: "3.13"
16+
PYTHON_VERSION: "3.14"
1717

1818
jobs:
1919
validate:

.python-version

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

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Builder
2-
FROM python:3.13-slim-bookworm AS builder
2+
FROM python:3.14-slim-bookworm AS builder
33

44
RUN apt-get update && apt-get install -y --no-install-recommends \
55
build-essential libpq-dev \
@@ -17,7 +17,7 @@ COPY README.md .
1717
RUN uv sync --no-dev --frozen
1818

1919
# Stage 2: Runtime
20-
FROM python:3.13-slim-bookworm
20+
FROM python:3.14-slim-bookworm
2121

2222
RUN apt-get update && apt-get install -y --no-install-recommends \
2323
libpq5 curl \

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ classifiers = [
3030
"Programming Language :: Python :: 3.11",
3131
"Programming Language :: Python :: 3.12",
3232
"Programming Language :: Python :: 3.13",
33+
"Programming Language :: Python :: 3.14",
3334
"Topic :: Software Development :: Libraries :: Python Modules",
3435
"Topic :: Text Processing :: Indexing",
3536
"Typing :: Typed",

0 commit comments

Comments
 (0)