Skip to content

Commit dd054cd

Browse files
committed
Updated Python base image to 3.13 in Dockerfiles and GitHub Actions workflow.
1 parent 627cebd commit dd054cd

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ jobs:
4040
source .venv/bin/activate
4141
pytest --cov=producer --cov=consumer --cov-report=xml
4242
43-
# Only upload coverage from the main Python version (3.12)
44-
- name: Upload coverage to Codecov (only on Python 3.12)
45-
if: matrix.python-version == '3.12'
43+
# Only upload coverage from the main Python version (3.13)
44+
- name: Upload coverage to Codecov (only on Python 3.13)
45+
if: matrix.python-version == '3.13'
4646
uses: codecov/codecov-action@v4
4747
with:
4848
token: ${{ secrets.CODECOV_TOKEN }}

consumer.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-alpine3.22
1+
FROM python:3.13.7-alpine3.22
22

33
WORKDIR /app
44

producer.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-alpine3.22
1+
FROM python:3.13.7-alpine3.22
22

33
WORKDIR /app
44

0 commit comments

Comments
 (0)