Skip to content

Commit

Permalink
Update dependencies: pdm, redis, and mypy (#136)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
mnako committed Jul 1, 2024
1 parent e55bb3f commit ff307db
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions {{ cookiecutter.project_name }}/webapp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ RUN groupadd --force --gid ${GROUP_ID} --system usergroup && \
USER user

WORKDIR /app
RUN python -m pip install --upgrade pip==24.1 && \
pip install --user pdm==2.15.4
RUN python -m pip install --upgrade pip==24.1.1 && \
pip install --user pdm==2.16.1
ENV PATH="/app/__pypackages__/3.11/bin:/home/user/.local/bin:${PATH}"

COPY pdm.lock pyproject.toml /app/
Expand Down
34 changes: 17 additions & 17 deletions {{ cookiecutter.project_name }}/webapp/pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions {{ cookiecutter.project_name }}/webapp/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies = [
"gunicorn==22.0.0",
"kombu==5.3.7",
"psycopg2==2.9.8",
"redis==5.0.6",
"redis==5.0.7",
]
requires-python = ">=3.11"
license = {text = "MIT"}
Expand All @@ -23,7 +23,7 @@ homepage = ""
[project.optional-dependencies]
dev = [
"black==24.4.2",
"mypy==1.10.0",
"mypy==1.10.1",
"pytest-cov==5.0.0",
"pytest==8.2.2",
]
Expand Down

0 comments on commit ff307db

Please sign in to comment.