Skip to content

Commit 922abb0

Browse files
authored
Merge pull request #1653 from swirlai/ds-3044-comm
Update base image to Python 3.13.5 on develop
2 parents 6cecaa0 + 97d051e commit 922abb0

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/db-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Set Up Python
3131
uses: actions/setup-python@v5
3232
with:
33-
python-version: '3.12.11'
33+
python-version: '3.13.5'
3434
cache: 'pip'
3535
- name: Install Swirl (with a timeout)
3636
run: ./install.sh

.github/workflows/qa-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Set Up Python
2929
uses: actions/setup-python@v5
3030
with:
31-
python-version: '3.12.11'
31+
python-version: '3.13.5'
3232
cache: 'pip'
3333
- name: Install Swirl
3434
run: ./install.sh

.github/workflows/test-build-pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set Up Python
2626
uses: actions/setup-python@v5
2727
with:
28-
python-version: '3.12.11'
28+
python-version: '3.13.5'
2929
cache: 'pip'
3030
- name: Install Swirl
3131
run: ./install.sh
@@ -56,7 +56,7 @@ jobs:
5656
- name: Set Up Python
5757
uses: actions/setup-python@v5
5858
with:
59-
python-version: '3.12.11'
59+
python-version: '3.13.5'
6060
cache: 'pip'
6161
- name: Install Swirl (with a timeout)
6262
run: ./install.sh
@@ -125,7 +125,7 @@ jobs:
125125
- name: Set Up Python
126126
uses: actions/setup-python@v5
127127
with:
128-
python-version: '3.12.11'
128+
python-version: '3.13.5'
129129
cache: 'pip'
130130
- name: Install Swirl
131131
run: ./install.sh

.github/workflows/testing-wip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Set Up Python
4242
uses: actions/setup-python@v5
4343
with:
44-
python-version: '3.12.11'
44+
python-version: '3.13.5'
4545
cache: 'pip'
4646
- name: Install Swirl
4747
run: ./install.sh

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Set Up Python
3232
uses: actions/setup-python@v5
3333
with:
34-
python-version: '3.12.11'
34+
python-version: '3.13.5'
3535
cache: 'pip'
3636
- name: Install Swirl
3737
run: ./install.sh

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12.11-slim-bookworm
1+
FROM python:3.13.5-slim-bookworm
22

33
# Update, upgrade and install packages in a single RUN to reduce layers
44
RUN apt-get update && apt-get install -y \

0 commit comments

Comments
 (0)