Skip to content

Commit

Permalink
fixes #100 use poetry 1.8.5 (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
hollanbm authored Feb 11, 2025
1 parent 6d4fd2e commit 6941c96
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ RUN chmod 0755 /config

RUN pip install pipx
RUN pipx --global ensurepath
RUN pipx --global install poetry==1.8.4 ruff pre-commit pytest yamale yamllint
RUN pipx --global install poetry==1.8.5 ruff pre-commit pytest yamale yamllint

USER vscode
3 changes: 2 additions & 1 deletion .github/workflows/python-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.5
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
Expand Down Expand Up @@ -65,5 +66,5 @@ jobs:
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
files: ./coverage.xml
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:3.13-slim-bookworm AS builder
WORKDIR /home/app/renamarr

# install poetry
RUN pip install poetry==1.8.4
RUN pip install poetry==1.8.5

COPY pyproject.toml poetry.lock ./

Expand Down

0 comments on commit 6941c96

Please sign in to comment.