Skip to content

Commit 2635505

Browse files
committed
Use python 3.14 in default gitlab-ci and github actions
1 parent 4b0bcbf commit 2635505

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.11", "3.12"]
13+
python-version: ["3.11", "3.14"]
1414

1515
steps:
1616
- uses: actions/checkout@v2

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ include:
55
- remote: 'https://gitlab.esss.lu.se/ics-infrastructure/gitlab-ci-yml/raw/master/Docker.gitlab-ci.yml'
66

77

8-
test-python311:
8+
test-python314:
99
stage: test
10-
image: python:3.11
10+
image: docker.io/library/python:3.14
1111
before_script:
1212
- pip install -e .[tests]
1313
script:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM dockerhub/library/python:3.14-slim as base
1+
FROM docker.io/library/python:3.14-slim as base
22

33
# Install Python dependencies in an intermediate image
44
# as some requires a compiler (psycopg2)

0 commit comments

Comments
 (0)