Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/push+deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
fail-fast: false

steps:
Expand All @@ -63,6 +64,7 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
fail-fast: false

steps:
Expand Down Expand Up @@ -104,7 +106,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v2
with:
python-version: 3.13
python-version: 3.14
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install the project
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ This page lists all versions with its changes. Macen follows Semantic Versioning
Version 0
-------------------------

v0.5.1 (2025-10-08)
^^^^^^^^^^^^^^^^^^^

Declare support with Python 3.14 and test with it.


v0.5.0 (2025-09-11)
^^^^^^^^^^^^^^^^^^^

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/astral-sh/uv:python3.13-bookworm-slim AS builder
FROM ghcr.io/astral-sh/uv:python3.14-trixie-slim AS builder

# Configure UV:
ENV UV_COMPILE_BYTECODE=1
Expand All @@ -16,7 +16,7 @@ ADD macen/ /app/macen/
RUN --mount=type=cache,target=/root/.cache/uv uv sync --locked --no-dev

# Copy build application into fresh image:
FROM python:3.13-slim-bookworm
FROM python:3.14-slim-trixie
COPY --from=builder --chown=app:app /app /app

# Pick up scripts from venv directly
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers = [
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
]

[project.urls]
Expand All @@ -42,7 +43,7 @@ dns01 = ["dnslib", "py3dns"]
macen = "macen.__main__:main"

[build-system]
requires = ["uv_build>=0.8.6,<0.9.0"]
requires = ["uv_build>=0.8.6,<0.10.0"]
build-backend = "uv_build"

[tool.uv.build-backend]
Expand Down
Loading
Loading