Skip to content

Bump python from 3.12.7-slim to 3.13.0-slim #1061

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: "3.12"
python-version: "3.13"
- name: Install poetry
run: pipx install poetry
- uses: actions/cache@v4
Expand All @@ -27,7 +27,7 @@ jobs:
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: "3.12"
python-version: "3.13"
- name: Install pandoc
run: sudo apt-get install -y pandoc
- name: Install poetry
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Creating a python base with shared environment variables
FROM python:3.12.7 as base
FROM python:3.13.0 as base
ENV PIP_NO_CACHE_DIR=off \
PIP_DEFAULT_TIMEOUT=100 \
PIP_DISABLE_PIP_VERSION_CHECK=on \
Expand All @@ -22,7 +22,7 @@ COPY ./poetry.lock ./pyproject.toml ./
RUN $POETRY_HOME/bin/poetry install --without dev --no-root

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

# Install pandoc for markdown to Jira conversions.
RUN apt-get -y update && \
Expand Down
Loading
Loading