Skip to content

Commit 013ce72

Browse files
committed
Update various dependencies
1 parent fc617e6 commit 013ce72

File tree

5 files changed

+573
-432
lines changed

5 files changed

+573
-432
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ jobs:
1515
- name: Set up Python
1616
uses: actions/setup-python@v2
1717
with:
18-
python-version: "3.11"
18+
python-version: "3.13"
1919

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

2525
- name: Install poetry
2626
uses: abatilo/actions-poetry@v2
2727
with:
28-
poetry-version: 1.8.2
28+
poetry-version: 1.8.5
2929

3030
- name: Install Dependencies
3131
run: poetry install
@@ -44,17 +44,17 @@ jobs:
4444
- name: Set up Python
4545
uses: actions/setup-python@v2
4646
with:
47-
python-version: "3.11"
47+
python-version: "3.13"
4848

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

5454
- name: Install poetry
5555
uses: abatilo/actions-poetry@v2
5656
with:
57-
poetry-version: 1.8.2
57+
poetry-version: 1.8.5
5858

5959
- name: Install Dependencies
6060
run: poetry install
@@ -70,17 +70,17 @@ jobs:
7070
- name: Set up Python
7171
uses: actions/setup-python@v2
7272
with:
73-
python-version: "3.11"
73+
python-version: "3.13"
7474

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

8080
- name: Install poetry
8181
uses: abatilo/actions-poetry@v2
8282
with:
83-
poetry-version: 1.8.2
83+
poetry-version: 1.8.5
8484

8585
- name: Install Dependencies
8686
run: poetry install

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.11-slim
1+
FROM python:3.13-slim
22

33
ENV VIRTUAL_ENV=/venv
44

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

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

1212
USER calmerge
1313

0 commit comments

Comments
 (0)