Skip to content

Commit 768e000

Browse files
renovate[bot]Patrick J. McNerthney
authored andcommitted
chore(deps): update python docker tag to v3.14
1 parent fac7f6a commit 768e000

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
env:
1616
# Common versions
17-
PYTHON_VERSION: '3.13.7' # TODO: Used?
17+
PYTHON_VERSION: '3.14.0' # TODO: Used?
1818
HATCH_VERSION: '1.14.2'
1919
DOCKER_BUILDX_VERSION: 'v0.26.1'
2020

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
FROM python:3.13-slim-trixie AS image
1+
FROM python:3.14-slim-trixie AS image
22

33
COPY dist/*.whl /root
44
WORKDIR /
55
RUN \
66
set -eux && \
7+
pip install --upgrade pip setuptools && \
78
pip install --root-user-action ignore --no-build-isolation $(echo /root/*.whl)[packages,pip-install] && \
89
rm -rf /root/*.whl /root/.cache && \
910
groupadd --gid 2000 pythonic && \

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
name = "crossplane-function-pythonic"
33
description = 'A Python centric Crossplane Function'
44
readme = "README.md"
5-
requires-python = ">=3.11,<3.14"
5+
requires-python = ">=3.12,<3.15"
66
license = "Apache-2.0"
77
keywords = []
88
authors = [{ name = "Patrick J McNerthney", email = "[email protected]" }]
99
classifiers = [
1010
"Development Status :: 4 - Beta",
1111
"Programming Language :: Python",
12-
"Programming Language :: Python :: 3.11",
1312
"Programming Language :: Python :: 3.12",
1413
"Programming Language :: Python :: 3.13",
14+
"Programming Language :: Python :: 3.14",
1515
]
1616

1717
dynamic = ["version"]

0 commit comments

Comments
 (0)