Skip to content

Commit

Permalink
Update dependencies:
Browse files Browse the repository at this point in the history
* pip from 23.1.2 to 23.2.1
* pdm from 2.7.4 to 2.8.1
* ruff from 0.0.2.7.8 to 0.0.280
  • Loading branch information
mnako committed Jul 28, 2023
1 parent 540b05f commit 97a5199
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 39 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.1.2 && pip install --user pdm==2.7.4
RUN python -m pip install --upgrade pip==23.2.1 && pip install --user pdm==2.8.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==23.1.2 && pip install --user pdm==2.7.4
RUN python -m pip install --upgrade pip==23.2.1 && pip install --user pdm==2.8.1
ENV PATH="/app/__pypackages__/3.11/bin:/home/user/.local/bin:${PATH}"

COPY main.py pdm.lock pyproject.toml /app/
Expand Down
72 changes: 36 additions & 36 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 @@ -22,7 +22,7 @@ dev = [
"pytest-cov==4.1.0",
"pytest==7.4.0",
"ssort==0.11.6",
"ruff==0.0.278",
"ruff==0.0.280",
]
[build-system]
requires = ["pdm-pep517"]
Expand Down

0 comments on commit 97a5199

Please sign in to comment.