Skip to content

Commit 16e380c

Browse files
committed
upgrade to Python 3.13
Change-Id: I5e1f052e215ba984f2caa47af5d93486ea91be31
1 parent e54eb34 commit 16e380c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup python
2121
uses: actions/setup-python@v2
2222
with:
23-
python-version: 3.9
23+
python-version: 3.13
2424
- name: Install Tox
2525
run: pip install tox
2626
- name: Upgrade setuptools

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM python:3.9-bookworm AS build
1+
FROM python:3.13-trixie AS build
22

33
COPY . /src
44
WORKDIR /src/python
5-
RUN pip install --no-cache-dir build==1.2.2 && python3 -m build
5+
RUN pip install --no-cache-dir build==1.3.0 && python3 -m build
66

7-
FROM python:3.9-slim-bookworm
7+
FROM python:3.13-slim-trixie
88
ARG TZ
99
ENV TZ=$TZ
1010

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ classifiers = [
1414
"Programming Language :: Python :: 3",
1515
"License :: OSI Approved :: Apache Software License"
1616
]
17-
requires-python = ">=3.9"
17+
requires-python = ">=3.10"
1818
dependencies = [
1919
"etos_lib==5.1.3",
2020
"etcd3gw~=2.3",

0 commit comments

Comments
 (0)