Skip to content

Commit

Permalink
Update dependencies: pdm, django, black, and pytest (#119)
Browse files Browse the repository at this point in the history
Update dependencies:
* pdm from 2.9.3 to 2.10.0
* django from 4.2.6 to 4.2.7
* black from 23.10.0 to 23.10.1
* pytest from 7.4.2 to 7.4.3
  • Loading branch information
mnako committed Nov 5, 2023
1 parent d04bdb7 commit 607f827
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 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.9.3
pip install --user pdm==2.10.0
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.

6 changes: 3 additions & 3 deletions {{ cookiecutter.project_name }}/webapp/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [
{name = "Michal Nakoneczny", email = "[email protected]"},
]
dependencies = [
"django==4.2.6",
"django==4.2.7",
"celery==5.3.4",
"django-celery-beat==2.5.0",
"gunicorn==21.2.0",
Expand All @@ -22,10 +22,10 @@ homepage = ""

[project.optional-dependencies]
dev = [
"black==23.10.0",
"black==23.10.1",
"mypy==1.6.1",
"pytest-cov==4.1.0",
"pytest==7.4.2",
"pytest==7.4.3",
]
[build-system]
requires = ["pdm-pep517"]
Expand Down

0 comments on commit 607f827

Please sign in to comment.