Skip to content

Commit cc7ffe6

Browse files
authored
Merge pull request #100 from MrClock8163/feature/python314-support
Python 3.14 support
2 parents 9ba4778 + 3096f50 commit cc7ffe6

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

.github/workflows/build-test-containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["python311", "python312", "python313"]
12+
python-version: ["python311", "python312", "python313", "python314"]
1313
steps:
1414
-
1515
name: Login to Docker Hub

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- uses: actions/setup-python@v5
1818
with:
19-
python-version: "3.13"
19+
python-version: "3.14"
2020

2121
- name: Build release distributions
2222
run: |

.github/workflows/python-test-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
- uses: actions/setup-python@v5
1919
with:
20-
python-version: "3.13"
20+
python-version: "3.14"
2121

2222
- name: Build release distributions
2323
run: |

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["python311", "python312", "python313"]
20+
python-version: ["python311", "python312", "python313", "python314"]
2121

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

@@ -41,7 +41,7 @@ jobs:
4141
linting:
4242
name: Linting
4343
runs-on: ubuntu-latest
44-
container: mrclock8163/geocompy:tests-python313
44+
container: mrclock8163/geocompy:tests-python314
4545
strategy:
4646
fail-fast: false
4747
matrix:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ file.
55

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

8+
## Unreleased
9+
10+
### Added
11+
12+
- Added testing for Python 3.14
13+
814
## v0.14.0 (2025-10-18)
915

1016
### Added
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM python:3.14-slim-trixie
2+
3+
LABEL maintainer="MrClock"
4+
LABEL name="GeoComPy Python 3.14 testing container"
5+
LABEL description="Python 3.14 testing container with preinstalled packages for the GeoComPy package"
6+
7+
RUN apt-get update && apt-get install socat git -y
8+
RUN python -m pip install --upgrade pip --root-user-action=ignore

0 commit comments

Comments
 (0)