Skip to content

Commit

Permalink
Update dependencies:
Browse files Browse the repository at this point in the history
* pdm from 2.9.3 to 2.10.0
* black from 23.10.0 to 23.10.1
* pytest from 7.4.2 to 7.4.3
* ruff from 0.1.1 to 0.1.4
  • Loading branch information
mnako committed Nov 5, 2023
1 parent 77b361a commit 965d7ec
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 68 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.3.1 && pip install --user pdm==2.9.3
RUN python -m pip install --upgrade pip==23.3.1 && pip install --user pdm==2.10.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==23.3.1 && pip install --user pdm==2.9.3
RUN python -m pip install --upgrade pip==23.3.1 && pip install --user pdm==2.10.0
ENV PATH="/app/__pypackages__/3.11/bin:/home/user/.local/bin:${PATH}"

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

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

Loading

0 comments on commit 965d7ec

Please sign in to comment.