Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']

name: Python ${{ matrix.python-version}}
steps:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.5-slim-bookworm
FROM python:3.13-slim-bookworm

WORKDIR /app/

Expand All @@ -11,7 +11,7 @@ RUN groupadd -r kent && useradd --no-log-init -r -g kent kent
# realzies, you probably don't want to do this because Kent could change and
# break all your stuff. Pick a specific commit or tag.
RUN pip install -U 'pip>=8' && \
pip install --no-cache-dir 'https://github.com/willkg/kent/archive/refs/heads/main.zip'
pip install --no-cache-dir 'https://github.com/mozilla-services/kent/archive/refs/heads/main.zip'

USER kent

Expand Down
5 changes: 1 addition & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Running in a Docker container

I'm using something like this::

FROM python:3.11.5-slim-bookworm
FROM python:3.13-slim-bookworm

WORKDIR /app/

Expand All @@ -55,9 +55,6 @@ I'm using something like this::

RUN groupadd -r kent && useradd --no-log-init -r -g kent kent

# NOTE(willkg): This installs Kent from main tip. If you're using Kent for
# realzies, you probably don't want to do this because Kent could change and
# break all your stuff. Pick a specific commit or tag.
RUN pip install -U 'pip>=8' && \
pip install --no-cache-dir 'kent==<VERSION>'

Expand Down
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
urls.Homepage = "https://github.com/willkg/kent/"
urls.Source = "https://github.com/willkg/kent/"
urls.Issues = "https://github.com/willkg/kent/issues"
urls.Homepage = "https://github.com/mozilla-services/kent/"
urls.Source = "https://github.com/mozilla-services/kent/"
urls.Issues = "https://github.com/mozilla-services/kent/issues"

[project.scripts]
kent-server = "kent.cli_server:main"
Expand Down Expand Up @@ -82,6 +83,7 @@ envlist =
py311
py312
py313
py314
uv_python_preference = only-managed

[gh-actions]
Expand All @@ -90,6 +92,7 @@ python =
3.11: py311
3.12: py312
3.13: py313
3.14: py314

[testenv]
extras = dev
Expand Down