Skip to content

Commit d04bdb7

Browse files
authored
Update dependencies: pip, black, and mypy (#118)
Update dependencies: * pip from 23.2.1 to 23.3.1 * black from 23.9.1 to 23.10.0 * mypy from 1.6.0 to 1.6.1
1 parent e977d9f commit d04bdb7

File tree

3 files changed

+24
-25
lines changed

3 files changed

+24
-25
lines changed

{{ cookiecutter.project_name }}/webapp/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN groupadd --force --gid ${GROUP_ID} --system usergroup && \
1414
USER user
1515

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

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

Lines changed: 21 additions & 22 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
@@ -22,8 +22,8 @@ homepage = ""
2222

2323
[project.optional-dependencies]
2424
dev = [
25-
"black==23.9.1",
26-
"mypy==1.6.0",
25+
"black==23.10.0",
26+
"mypy==1.6.1",
2727
"pytest-cov==4.1.0",
2828
"pytest==7.4.2",
2929
]

0 commit comments

Comments
 (0)