Skip to content

Commit

Permalink
Update dependencies:
Browse files Browse the repository at this point in the history
* pip from 24.1.2 to 24.2
* pdm from 2.16.1 to 2.19.1
* black from 24.4.2 to 24.8.0
* mypy from 1.10.1 to 1.11.2
* pytest form 8.2.2 to 8.3.3
* ruff from 0.5.1 to 0.6.9
  • Loading branch information
mnako committed Oct 7, 2024
1 parent 29b1ca2 commit ab44ea1
Show file tree
Hide file tree
Showing 4 changed files with 155 additions and 115 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.1.2 && pip install --user pdm==2.16.1
RUN python -m pip install --upgrade pip==24.2 && pip install --user pdm==2.19.1
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.1.2 && pip install --user pdm==2.16.1
RUN python -m pip install --upgrade pip==24.2 && pip install --user pdm==2.19.1
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 ab44ea1

Please sign in to comment.