Skip to content

Commit b763343

Browse files
authored
Update dependencies: pip, pdm, django, redis, and mypy (#99)
Update dependencies: * pip from 23.0.1 to 23.1.2 * pdm from 2.5.2 to 2.6.1 * django from 4.2 to 4.2.1 (closes CVE-2023-31047) * redis from 4.5.4 to 4.5.5 * mypy from 1.2.0 to 1.3.0
1 parent 39eb8e7 commit b763343

File tree

4 files changed

+48
-71
lines changed

4 files changed

+48
-71
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: ${{ matrix.python-version }}
2222

2323
- name: "Set up PDM"
24-
run: pip install --user pdm==2.4.5
24+
run: pip install --user pdm==2.6.1
2525

2626
- name: "Test Cookiecutter"
2727
run: make test

{{ 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==23.0.1 && \
18-
pip install --user pdm==2.5.2
17+
RUN python -m pip install --upgrade pip==23.1.2 && \
18+
pip install --user pdm==2.6.1
1919
ENV PATH="/app/__pypackages__/3.11/bin:/home/user/.local/bin:${PATH}"
2020

2121
COPY pdm.lock pyproject.toml /app/

0 commit comments

Comments
 (0)