diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index a8760c353..2a97fcc0b 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -12,5 +12,5 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: "3.13" - uses: pre-commit/action@v3.0.1 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0ceef41d8..f993f6e8c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ on: pull_request: env: - PYTHON_VERSION: 3.12 + PYTHON_VERSION: 3.13 jobs: tests: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7a7c59a16..566ca61a6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -31,7 +31,7 @@ repos: rev: "v3.20.0" hooks: - id: pyupgrade - args: [--py312] + args: [--py313] - repo: https://github.com/adamchainz/django-upgrade rev: "1.28.0" hooks: diff --git a/Dockerfile b/Dockerfile index 5ee5efd9e..ba5638426 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # pull official base image -FROM python:3.12-slim-trixie +FROM python:3.13-slim-trixie # set work directory WORKDIR /usr/src/app diff --git a/README.rst b/README.rst index 1715f5895..0d79e3693 100644 --- a/README.rst +++ b/README.rst @@ -12,7 +12,7 @@ To run locally, you can either: Install and run locally from a virtual environment ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -#. Create a `Python Python 3.12 virtualenv and activate it `_ +#. Create a `Python 3.13 virtualenv and activate it `_ #. Install dependencies::