Skip to content

Commit 53c996d

Browse files
authored
Update dependencies: Python, Django, Celery, and Kombu (#102)
Update dependencies: * Python from 3.11.3 to 3.11.4 * Django from 4.2.1 to 4.2.2 * celery from 5.2.7 to 5.3.0 * kombu from 5.2.4 to 5.3.0
1 parent c215473 commit 53c996d

File tree

4 files changed

+35
-33
lines changed

4 files changed

+35
-33
lines changed

{{ cookiecutter.project_name }}/webapp/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.11.3-slim-bullseye
1+
FROM python:3.11.4-slim-bullseye
22

33
ARG USER_ID
44
ARG GROUP_ID

{{ cookiecutter.project_name }}/webapp/pdm.lock

Lines changed: 30 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

{{ cookiecutter.project_name }}/webapp/production.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM {{ cookiecutter.project_name }}_webapp:dev as builder
22

3-
FROM python:3.11.3-alpine3.17
3+
FROM python:3.11.4-alpine3.17
44

55
COPY --from=builder /app /app
66

{{ cookiecutter.project_name }}/webapp/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ authors = [
66
{name = "Michal Nakoneczny", email = "michal@nakoneczny.pl"},
77
]
88
dependencies = [
9-
"django==4.2.1",
10-
"celery==5.2.7",
9+
"django==4.2.2",
10+
"celery==5.3.0",
1111
"django-celery-beat==2.5.0",
1212
"gunicorn==20.1.0",
13-
"kombu==5.2.4",
13+
"kombu==5.3.0",
1414
"psycopg2==2.9.6",
1515
"redis==4.5.5",
1616
]

0 commit comments

Comments
 (0)