Skip to content
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

Update python to 3.11.9 and bump deps #2574

Merged
merged 1 commit into from
Jun 10, 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
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ include:
# Building template project:
mirror-github-build:
stage: build
image: python:3.11.5
image: python:3.11.9
variables:
POETRY_VERSION: '1.8.3'
before_script:
Expand Down
4 changes: 2 additions & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ build:
# See https://github.com/readthedocs/readthedocs.org/issues/4912
pre_create_environment:
# Select Python version (keep in sync with other versions):
- asdf install python 3.11.5
- asdf global python 3.11.5
- asdf install python 3.11.9
- asdf global python 3.11.9
- python -m pip install --upgrade --no-cache-dir virtualenv

# Install poetry:
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/.python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.11.5
3.11.9
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/docker/django/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This Dockerfile uses multi-stage build to customize DEV and PROD images:
# https://docs.docker.com/develop/develop-images/multistage-build/

FROM python:3.11.5-slim-bookworm AS development_build
FROM python:3.11.9-slim-bookworm AS development_build

LABEL maintainer="{{ cookiecutter.project_domain }}"
LABEL vendor="{{ cookiecutter.project_domain }}"
Expand Down
Loading