Skip to content

Commit 13675fd

Browse files
committed
Upgrade Python to 3.13
1 parent aa88a51 commit 13675fd

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-python@v5
1414
with:
15-
python-version: "3.12"
15+
python-version: "3.13"
1616
- uses: pre-commit/[email protected]

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
pull_request:
99

1010
env:
11-
PYTHON_VERSION: 3.12
11+
PYTHON_VERSION: 3.13
1212

1313
jobs:
1414
tests:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repos:
3131
rev: "v3.20.0"
3232
hooks:
3333
- id: pyupgrade
34-
args: [--py312]
34+
args: [--py313]
3535
- repo: https://github.com/adamchainz/django-upgrade
3636
rev: "1.25.0"
3737
hooks:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# pull official base image
2-
FROM python:3.12-slim-trixie
2+
FROM python:3.13-slim-trixie
33

44
# set work directory
55
WORKDIR /usr/src/app

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ To run locally, you can either:
1212
Install and run locally from a virtual environment
1313
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1414

15-
#. Create a `Python Python 3.12 virtualenv and activate it <https://docs.python.org/3/library/venv.html>`_
15+
#. Create a `Python 3.13 virtualenv and activate it <https://docs.python.org/3/library/venv.html>`_
1616

1717
#. Install dependencies::
1818

0 commit comments

Comments
 (0)