Skip to content

Commit ff307db

Browse files
authored
Update dependencies: pdm, redis, and mypy (#136)
Update dependencies: * pdm from 2.15.4 to 2.16.1 * redis from 5.0.6 to 5.0.7 * mypy from 1.10.0 to 1.10.1
1 parent e55bb3f commit ff307db

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

{{ cookiecutter.project_name }}/webapp/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ RUN groupadd --force --gid ${GROUP_ID} --system usergroup && \
1414
USER user
1515

1616
WORKDIR /app
17-
RUN python -m pip install --upgrade pip==24.1 && \
18-
pip install --user pdm==2.15.4
17+
RUN python -m pip install --upgrade pip==24.1.1 && \
18+
pip install --user pdm==2.16.1
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: 17 additions & 17 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
@@ -12,7 +12,7 @@ dependencies = [
1212
"gunicorn==22.0.0",
1313
"kombu==5.3.7",
1414
"psycopg2==2.9.8",
15-
"redis==5.0.6",
15+
"redis==5.0.7",
1616
]
1717
requires-python = ">=3.11"
1818
license = {text = "MIT"}
@@ -23,7 +23,7 @@ homepage = ""
2323
[project.optional-dependencies]
2424
dev = [
2525
"black==24.4.2",
26-
"mypy==1.10.0",
26+
"mypy==1.10.1",
2727
"pytest-cov==5.0.0",
2828
"pytest==8.2.2",
2929
]

0 commit comments

Comments
 (0)