Skip to content

Commit

Permalink
Update dependencies:
Browse files Browse the repository at this point in the history
* pdm from 2.12.4 to 2.13.0
* black from 24.2.0 to 24.3.0
* pytest-cov 4.1.0 to 5.0.0
* ruff from 0.3.2 to 0.3.4
  • Loading branch information
mnako committed Apr 1, 2024
1 parent f2d8ec0 commit 1e9e4a2
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 89 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==24.0 && pip install --user pdm==2.12.4
RUN python -m pip install --upgrade pip==24.0 && pip install --user pdm==2.13.0
ENV PATH="/app/__pypackages__/3.11/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==24.0 && pip install --user pdm==2.12.4
RUN python -m pip install --upgrade pip==24.0 && pip install --user pdm==2.13.0
ENV PATH="/app/__pypackages__/3.11/bin:/home/user/.local/bin:${PATH}"

COPY main.py pdm.lock pyproject.toml /app/
Expand Down
Loading

0 comments on commit 1e9e4a2

Please sign in to comment.