Skip to content

Commit

Permalink
Bump python to 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
zerolab committed Dec 12, 2024
1 parent fa1a372 commit cb13732
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.12'
python-version: '3.13'
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
python-version: '3.13'
cache: 'poetry'
- name: Install Python dependencies
run: poetry install
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
default_language_version:
node: 22.11.0
python: python3.12
python: python3.13
repos:
- repo: https://github.com/psf/black
rev: 24.10.0
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ RUN npm run build:prod


# Build Python app - this stage is a common base for the prod and dev stages
FROM python:3.12-bookworm AS backend
FROM python:3.13-bookworm AS backend

ARG POETRY_VERSION=1.8.3
ARG POETRY_VERSION=1.8.5
ARG UID=1000
ARG GID=1000

Expand Down
5 changes: 2 additions & 3 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.dependencies]
python = "^3.12"
python = "^3.13"
django = "~5.1.4"
wagtail = "~6.3.1"
psycopg = "~3.2"
Expand Down

0 comments on commit cb13732

Please sign in to comment.