Skip to content

Commit a337b83

Browse files
committed
Upgrade to Python 3.14
- Run CI tests on 3.14 - Run production instance on 3.14 - Code checkers should validate against 3.14 styles - WebOb needs a new version due to "cgi" module removal
1 parent 5d3ebb6 commit a337b83

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v3
1919
- uses: actions/setup-python@v4
2020
with:
21-
python-version: "3.10"
21+
python-version: "3.14"
2222

2323
- name: Run CI
2424
run: |

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ repos:
1212
# Since the pre-commit runs on a file by file basis rather than a whole project,
1313
# The excludes in pyproject.toml are ignored
1414
exclude: migrations
15-
language_version: python3.10
15+
language_version: python3.14

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# https://www.debian.org/releases/stable/
22
# https://hub.docker.com/_/python/
3-
ARG PYTHON_VERSION=3.13-slim-bookworm
3+
ARG PYTHON_VERSION=3.14-slim-trixie
44

55
FROM python:${PYTHON_VERSION}
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This is the repository for the San Diego Python website at [sandiegopython.org](
77

88
### Prerequisites
99

10-
* Python v3.10
10+
* Python v3.14
1111
* Node v20
1212

1313
### Getting started

requirements/local.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ django_coverage_plugin==3.1.0
1111
# Used in local testing
1212
WebTest==3.0.0
1313
beautifulsoup4==4.12.3
14-
WebOb==1.8.8
14+
WebOb==1.8.9
1515
responses==0.25.0
1616

1717
# Used to help with Django related debugging

0 commit comments

Comments
 (0)