Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ yapf = "==0.28.0"
black = "~=26.3"

[requires]
python_version = "3.12"
python_version = "3.14.4"
4 changes: 2 additions & 2 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docker/dev-workers/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12
FROM python:3.14.4

# Meta
LABEL maintainer="kiwix"
Expand Down
2 changes: 1 addition & 1 deletion docker/web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12
FROM python:3.14.4

# Meta
LABEL maintainer="kiwix"
Expand Down
2 changes: 1 addition & 1 deletion docker/workers/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.0
FROM python:3.14.4

# Meta
LABEL maintainer="kiwix"
Expand Down
Loading