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/build-test-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["python311", "python312", "python313"]
python-version: ["python311", "python312", "python313", "python314"]
steps:
-
name: Login to Docker Hub
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"

- name: Build release distributions
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"

- name: Build release distributions
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["python311", "python312", "python313"]
python-version: ["python311", "python312", "python313", "python314"]

container: mrclock8163/geocompy:tests-${{matrix.python-version}}

Expand All @@ -41,7 +41,7 @@ jobs:
linting:
name: Linting
runs-on: ubuntu-latest
container: mrclock8163/geocompy:tests-python313
container: mrclock8163/geocompy:tests-python314
strategy:
fail-fast: false
matrix:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ file.

The project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Added

- Added testing for Python 3.14

## v0.14.0 (2025-10-18)

### Added
Expand Down
8 changes: 8 additions & 0 deletions tests/docker/test_python314.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM python:3.14-slim-trixie

LABEL maintainer="MrClock"
LABEL name="GeoComPy Python 3.14 testing container"
LABEL description="Python 3.14 testing container with preinstalled packages for the GeoComPy package"

RUN apt-get update && apt-get install socat git -y
RUN python -m pip install --upgrade pip --root-user-action=ignore