Skip to content

Commit 5dcb070

Browse files
chore(deps): update python
1 parent e15d414 commit 5dcb070

File tree

6 files changed

+12
-162
lines changed

6 files changed

+12
-162
lines changed

.github/workflows/ci-main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- uses: actions/checkout@v4
7171
- uses: actions/setup-python@v5
7272
with:
73-
python-version: "3.10"
73+
python-version: "3.13"
7474
- uses: pre-commit/action@v3.0.1
7575

7676
trivy-scan:
@@ -165,7 +165,7 @@ jobs:
165165
- name: Setup python
166166
uses: actions/setup-python@v5
167167
with:
168-
python-version: "3.10"
168+
python-version: "3.13"
169169
- name: run install_microk8s.sh
170170
run: |
171171
sudo snap install microk8s --classic --channel=1.30/stable
@@ -191,7 +191,7 @@ jobs:
191191
- name: Setup python
192192
uses: actions/setup-python@v5
193193
with:
194-
python-version: "3.10"
194+
python-version: "3.13"
195195
- name: Install docker compose
196196
run: |
197197
# Add Docker's official GPG key:

.github/workflows/ci-ui-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set up Python
5555
uses: actions/setup-python@v5
5656
with:
57-
python-version: "3.10"
57+
python-version: "3.13"
5858

5959
- name: remove not used docker images
6060
run: |

.github/workflows/mike.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
token: "${{ secrets.PAT_CLATOOL }}"
4141
- uses: actions/setup-python@v5
4242
with:
43-
python-version: "3.10"
43+
python-version: "3.13"
4444
- name: Upload Docs
4545
run: |
4646
sudo apt update

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-alpine AS base
1+
FROM python:3.13-alpine AS base
22

33
ENV PYTHONFAULTHANDLER=1 \
44
PYTHONHASHSEED=random \

poetry.lock

Lines changed: 5 additions & 155 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ testpaths = ["test"]
2121
python_files = ["test_*.py"]
2222

2323
[tool.poetry.dependencies]
24-
python = ">=3.8,<3.12"
24+
python = ">=3.13,<3.14"
2525
pymongo = {extras = ["srv"], version = "^4.0.0"}
2626
requests = {extras = ["crypto"], version = "^2.31.0"}
2727
celery = {extras = ["tblib"], version = "5.4.0"}

0 commit comments

Comments
 (0)