Skip to content

Commit a208dab

Browse files
authored
Update project dependencies: pdm, celery, and kombu (#111)
Update project dependencies: * pdm from 2.8.2 to 2.9.0 * celery from 5.3.1 to 5.3.3 * kombu from 5.3.1 to 5.3.2
1 parent adc6ca7 commit a208dab

File tree

4 files changed

+24
-34
lines changed

4 files changed

+24
-34
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: "Set up PDM"
2525
run: |
2626
pip install --upgrade pip==23.2.1
27-
pip install --user pdm==2.8.2
27+
pip install --user pdm==2.9.0
2828
pdm install
2929
3030
- name: "Test Cookiecutter"

{{ cookiecutter.project_name }}/webapp/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ USER user
1515

1616
WORKDIR /app
1717
RUN python -m pip install --upgrade pip==23.2.1 && \
18-
pip install --user pdm==2.8.2
18+
pip install --user pdm==2.9.0
1919
ENV PATH="/app/__pypackages__/3.11/bin:/home/user/.local/bin:${PATH}"
2020

2121
COPY pdm.lock pyproject.toml /app/

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

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ authors = [
77
]
88
dependencies = [
99
"django==4.2.4",
10-
"celery==5.3.1",
10+
"celery==5.3.3",
1111
"django-celery-beat==2.5.0",
1212
"gunicorn==21.2.0",
13-
"kombu==5.3.1",
13+
"kombu==5.3.2",
1414
"psycopg2==2.9.6",
1515
"redis==5.0.0",
1616
]

0 commit comments

Comments
 (0)