Skip to content

Commit

Permalink
Update dependencies:
Browse files Browse the repository at this point in the history
* pip from 23.0.1 to 23.1.2
* pdm from 2.5.2 to 2.6.1
* mypy from 1.2.0 to 1.3.0
* ruff from 0.0.261 to 0.0.267
  • Loading branch information
mnako committed May 16, 2023
1 parent 84f5be4 commit ce1dce4
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 53 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: "Set up PDM"
run: pip install --user pdm
run: pip install --user pdm==2.6.1

- name: "Test Cookiecutter"
run: make test
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.1 && pip install --user pdm==2.5.2
RUN python -m pip install --upgrade pip==23.1.2 && pip install --user pdm==2.6.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.0.1 && pip install --user pdm==2.5.2
RUN python -m pip install --upgrade pip==23.1.2 && pip install --user pdm==2.6.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 ce1dce4

Please sign in to comment.