Skip to content

Commit

Permalink
Update dependencies: pdm, celery, kombu, black, and mypy (#120)
Browse files Browse the repository at this point in the history
Update dependencies:
* pdm from 2.10.0 to 2.10.1
* celery from 5.3.4 to 5.3.5
* kombu from 5.3.2 to 5.3.3
* black from 23.10.1 to 23.11.0
* mypy from 1.6.1 to 1.7.0
  • Loading branch information
mnako committed Nov 11, 2023
1 parent 607f827 commit ae745ab
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 55 deletions.
2 changes: 1 addition & 1 deletion {{ cookiecutter.project_name }}/webapp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ USER user

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

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

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

8 changes: 4 additions & 4 deletions {{ cookiecutter.project_name }}/webapp/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ authors = [
]
dependencies = [
"django==4.2.7",
"celery==5.3.4",
"celery==5.3.5",
"django-celery-beat==2.5.0",
"gunicorn==21.2.0",
"kombu==5.3.2",
"kombu==5.3.3",
"psycopg2==2.9.8",
"redis==5.0.1",
]
Expand All @@ -22,8 +22,8 @@ homepage = ""

[project.optional-dependencies]
dev = [
"black==23.10.1",
"mypy==1.6.1",
"black==23.11.0",
"mypy==1.7.0",
"pytest-cov==4.1.0",
"pytest==7.4.3",
]
Expand Down

0 comments on commit ae745ab

Please sign in to comment.