Skip to content

Commit d959ba4

Browse files
dependabot[bot]leplatrem
authored andcommitted
Bump python from 3.12.7-slim to 3.13.0-slim (mozilla#1061)
* Bump python from 3.12.7-slim to 3.13.0-slim Bumps python from 3.12.7-slim to 3.13.0-slim. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Adjust python version range * Upgrade deps * Run CI with 3.13 * Upload lock file --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mathieu Leplatre <[email protected]>
1 parent dd9911d commit d959ba4

File tree

4 files changed

+659
-634
lines changed

4 files changed

+659
-634
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/setup-python@v5
1111
id: setup-python
1212
with:
13-
python-version: "3.12"
13+
python-version: "3.13"
1414
- name: Install poetry
1515
run: pipx install poetry
1616
- uses: actions/cache@v4
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/setup-python@v5
2828
id: setup-python
2929
with:
30-
python-version: "3.12"
30+
python-version: "3.13"
3131
- name: Install pandoc
3232
run: sudo apt-get install -y pandoc
3333
- name: Install poetry

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Creating a python base with shared environment variables
2-
FROM python:3.12.7 as base
2+
FROM python:3.13.0 as base
33
ENV PIP_NO_CACHE_DIR=off \
44
PIP_DEFAULT_TIMEOUT=100 \
55
PIP_DISABLE_PIP_VERSION_CHECK=on \
@@ -22,7 +22,7 @@ COPY ./poetry.lock ./pyproject.toml ./
2222
RUN $POETRY_HOME/bin/poetry install --without dev --no-root
2323

2424
# `production` stage uses the dependencies downloaded in the `base` stage
25-
FROM python:3.12.7-slim as production
25+
FROM python:3.13.0-slim as production
2626

2727
# Install pandoc for markdown to Jira conversions.
2828
RUN apt-get -y update && \

0 commit comments

Comments
 (0)