File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1- FROM python:3.13 -slim-trixie AS image
1+ FROM python:3.14 -slim-trixie AS image
22
33COPY dist/*.whl /root
44WORKDIR /
55RUN \
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 && \
Original file line number Diff line number Diff line change 22name = " crossplane-function-pythonic"
33description = ' A Python centric Crossplane Function'
44readme = " README.md"
5- requires-python = " >=3.11 ,<3.14 "
5+ requires-python = " >=3.12 ,<3.15 "
66license = " Apache-2.0"
77keywords = []
88authors = [{
name =
" Patrick J McNerthney" ,
email =
" [email protected] " }]
99classifiers = [
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
1717dynamic = [" version" ]
You can’t perform that action at this time.
0 commit comments