diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33973f22b..d5e2aca1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python 3.12.0 + - name: Set up Python 3.14.4 uses: actions/setup-python@v5 with: - python-version: '3.12.0' + python-version: '3.14.4' - name: Install Black run: | @@ -53,10 +53,10 @@ jobs: - uses: actions/checkout@v4 # Don't need lfs because we're not referencing the dev-db in this workflow. - - name: Set up Python 3.12.0 + - name: Set up Python 3.14.4 uses: actions/setup-python@v5 with: - python-version: '3.12.0' + python-version: '3.14.4' - name: Install dependencies run: | @@ -96,10 +96,10 @@ jobs: with: lfs: true - - name: Set up Python 3.12.0 + - name: Set up Python 3.14.4 uses: actions/setup-python@v5 with: - python-version: '3.12.0' + python-version: '3.14.4' - uses: actions/cache@v4 name: Cache pip dependencies diff --git a/Pipfile b/Pipfile index c2260cfee..baa47f2c3 100644 --- a/Pipfile +++ b/Pipfile @@ -44,4 +44,4 @@ yapf = "==0.28.0" black = "~=26.3" [requires] -python_version = "3.12" +python_version = "3.14.4" diff --git a/Pipfile.lock b/Pipfile.lock index 1338c6913..bb58f1a5f 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,11 +1,11 @@ { "_meta": { "hash": { - "sha256": "20af6141b9ed16fc7cb778c9dcf898c968d3e0681161bb3e81666f645ab0b7a3" + "sha256": "1c7bcdcb29ba34bb7bc23f84a4766801c2fc74293b2e45cf3fe629e0c60b65b0" }, "pipfile-spec": 6, "requires": { - "python_version": "3.12" + "python_version": "3.14.4" }, "sources": [ { diff --git a/docker/dev-workers/Dockerfile b/docker/dev-workers/Dockerfile index 1a0144fe2..1d5305ee1 100644 --- a/docker/dev-workers/Dockerfile +++ b/docker/dev-workers/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12 +FROM python:3.14.4 # Meta LABEL maintainer="kiwix" diff --git a/docker/web/Dockerfile b/docker/web/Dockerfile index ea2e32bbe..4e01c6cfe 100644 --- a/docker/web/Dockerfile +++ b/docker/web/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12 +FROM python:3.14.4 # Meta LABEL maintainer="kiwix" diff --git a/docker/workers/Dockerfile b/docker/workers/Dockerfile index 94fc62243..0a33edccc 100644 --- a/docker/workers/Dockerfile +++ b/docker/workers/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.0 +FROM python:3.14.4 # Meta LABEL maintainer="kiwix"