Skip to content

Commit

Permalink
Update dependencies:
Browse files Browse the repository at this point in the history
* PDM from 2.4.2 to 2.4.5
* mypy from 0.991 to 1.0.0
  • Loading branch information
mnako committed Feb 12, 2023
1 parent 25d3174 commit 701fea8
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 46 deletions.
2 changes: 1 addition & 1 deletion {{ cookiecutter.project_name }}/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN groupadd --force --gid ${GROUP_ID} --system usergroup && \
USER user

WORKDIR /app
RUN python -m pip install --upgrade pip==23.0 && pip install --user pdm==2.4.2
RUN python -m pip install --upgrade pip==23.0 && pip install --user pdm==2.4.5
ENV PATH="/app/__pypackages__/3.10/bin:/home/user/.local/bin:${PATH}"

COPY main.py pdm.lock pyproject.toml /app/
Expand Down
2 changes: 1 addition & 1 deletion {{ cookiecutter.project_name }}/Dockerfile.production
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN addgroup -S usergroup && adduser -S user -G usergroup && mkdir /app && chown
USER user

WORKDIR /app
RUN python -m pip install --upgrade pip==23.0 && pip install --user pdm==2.4.2
RUN python -m pip install --upgrade pip==23.0 && pip install --user pdm==2.4.5
ENV PATH="/app/__pypackages__/3.10/bin:/home/user/.local/bin:${PATH}"

COPY main.py pdm.lock pyproject.toml /app/
Expand Down
86 changes: 43 additions & 43 deletions {{ cookiecutter.project_name }}/pdm.lock

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

2 changes: 1 addition & 1 deletion {{ cookiecutter.project_name }}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ homepage = ""
dev = [
"black==23.1.0",
"isort==5.12.0",
"mypy==0.991",
"mypy==1.0.0",
"pytest-cov==4.0.0",
"pytest==7.2.1",
"ssort==0.11.6",
Expand Down

0 comments on commit 701fea8

Please sign in to comment.