Skip to content

Commit

Permalink
Update python to 3.11.9 and bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Jun 10, 2024
1 parent b7ac8c9 commit fc543ec
Show file tree
Hide file tree
Showing 6 changed files with 212 additions and 238 deletions.
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

0 comments on commit fc543ec

Please sign in to comment.