Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.14"

- name: Run CI
run: |
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ repos:
# Since the pre-commit runs on a file by file basis rather than a whole project,
# The excludes in pyproject.toml are ignored
exclude: migrations
language_version: python3.10
language_version: python3.14
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# https://www.debian.org/releases/stable/
# https://hub.docker.com/_/python/
ARG PYTHON_VERSION=3.13-slim-bookworm
ARG PYTHON_VERSION=3.14-slim-trixie

FROM python:${PYTHON_VERSION}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is the repository for the San Diego Python website at [sandiegopython.org](

### Prerequisites

* Python v3.10
* Python v3.14
* Node v20

### Getting started
Expand Down
2 changes: 1 addition & 1 deletion requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ django_coverage_plugin==3.1.0
# Used in local testing
WebTest==3.0.0
beautifulsoup4==4.12.3
WebOb==1.8.8
WebOb==1.8.9
responses==0.25.0

# Used to help with Django related debugging
Expand Down
Loading