Skip to content

Commit

Permalink
Update various dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
RealOrangeOne committed Jan 23, 2025
1 parent fc617e6 commit 013ce72
Show file tree
Hide file tree
Showing 5 changed files with 573 additions and 432 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
python-version: "3.13"

- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: pip-3.11-${{ hashFiles('poetry.lock') }}
key: pip-3.13-${{ hashFiles('poetry.lock') }}

- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.8.2
poetry-version: 1.8.5

- name: Install Dependencies
run: poetry install
Expand All @@ -44,17 +44,17 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
python-version: "3.13"

- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: pip-3.11-${{ hashFiles('poetry.lock') }}
key: pip-3.13-${{ hashFiles('poetry.lock') }}

- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.8.2
poetry-version: 1.8.5

- name: Install Dependencies
run: poetry install
Expand All @@ -70,17 +70,17 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
python-version: "3.13"

- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: pip-3.11-${{ hashFiles('poetry.lock') }}
key: pip-3.13-${{ hashFiles('poetry.lock') }}

- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.8.2
poetry-version: 1.8.5

- name: Install Dependencies
run: poetry install
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim
FROM python:3.13-slim

ENV VIRTUAL_ENV=/venv

Expand All @@ -7,7 +7,7 @@ RUN useradd calmerge --create-home && mkdir /app $VIRTUAL_ENV && chown -R calmer
WORKDIR /app

# Install poetry at the system level
RUN pip install --no-cache poetry==1.8.2
RUN pip install --no-cache poetry==1.8.5

USER calmerge

Expand Down
Loading

0 comments on commit 013ce72

Please sign in to comment.