Skip to content

Commit

Permalink
use python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Nov 18, 2024
1 parent 73bfb7b commit b920d51
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/test-and-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ jobs:
with:
version: 1.3.2

- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: poetry

- name: Install and configure poetry
run: cd database-cleanup && poetry install

- name: Run tests
run: cd database-cleanup && make test

Expand Down
2 changes: 1 addition & 1 deletion infrastructure/Dockerfile.database-cleanup
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.11-slim

RUN pip install -U pip poetry==1.3.2

Expand Down

0 comments on commit b920d51

Please sign in to comment.