Skip to content

Commit 21e440f

Browse files
author
Pau Tena
committed
Bump python to v3.12
1 parent b324e04 commit 21e440f

File tree

11 files changed

+12
-410
lines changed

11 files changed

+12
-410
lines changed

.github/workflows/generate-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
node-version: lts/*
2626
- uses: actions/setup-python@v5
2727
with:
28-
python-version: "3.10"
28+
python-version: "3.12"
2929
- name: Install uv
3030
uses: astral-sh/setup-uv@v5
3131
with:

.github/workflows/lint-backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: "3.10"
21+
python-version: "3.12"
2222
- name: Install uv
2323
uses: astral-sh/setup-uv@v5
2424
with:

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
node-version: lts/*
6262
- uses: actions/setup-python@v5
6363
with:
64-
python-version: '3.10'
64+
python-version: '3.12'
6565
- name: Setup tmate session
6666
uses: mxschmitt/action-tmate@v3
6767
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}

.github/workflows/smokeshow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v4
1818
- uses: actions/setup-python@v5
1919
with:
20-
python-version: "3.10"
20+
python-version: "3.12"
2121
- run: pip install smokeshow
2222
- uses: actions/download-artifact@v4
2323
with:

.github/workflows/test-backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Python
2727
uses: actions/setup-python@v5
2828
with:
29-
python-version: "3.10"
29+
python-version: "3.12"
3030
- name: Install uv
3131
uses: astral-sh/setup-uv@v5
3232
with:

.github/workflows/test-docker-compose.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313

1414
test-docker-compose:
1515
runs-on: ubuntu-latest
16+
env:
17+
ENVIRONMENT: local
1618
steps:
1719
- name: Checkout
1820
uses: actions/checkout@v4

backend/Dockerfile

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

33
ENV PYTHONUNBUFFERED=1
44

backend/app/tests/scripts/test_backend_pre_start.py

Lines changed: 0 additions & 33 deletions
This file was deleted.

backend/app/tests/scripts/test_test_pre_start.py

Lines changed: 0 additions & 33 deletions
This file was deleted.

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "app"
33
version = "0.1.0"
44
description = ""
5-
requires-python = ">=3.10,<4.0"
5+
requires-python = ">=3.12,<4.0"
66
dependencies = [
77
"fastapi[standard]<1.0.0,>=0.114.2",
88
"python-multipart<1.0.0,>=0.0.7",

0 commit comments

Comments
 (0)