Skip to content

Commit adeadc5

Browse files
committed
Use Python 3.11
1 parent 6b8f3bc commit adeadc5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
DATABASE_URL: 'postgres://pg:passw0rd@localhost/interna'
1919
services:
2020
postgres:
21-
image: postgres:13.2-alpine
21+
image: postgres:14-alpine
2222
env:
2323
POSTGRES_USER: pg
2424
POSTGRES_PASSWORD: passw0rd
@@ -36,7 +36,7 @@ jobs:
3636
- name: Setup python
3737
uses: actions/setup-python@v2
3838
with:
39-
python-version: '3.10'
39+
python-version: '3.11'
4040
- name: Install dependencies
4141
run: |
4242
python -m pip install --upgrade pip

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#
1414
# See docker-compose.yml as an example on how to run this image.
1515

16-
FROM docker.io/python:3.10-slim-bullseye
16+
FROM docker.io/python:3.11-slim-bullseye
1717

1818
# Add requirements file
1919
ADD requirements.txt /code/requirements.txt

0 commit comments

Comments
 (0)