Skip to content

Commit 80d5962

Browse files
committed
Add Python 3.13 support
Signed-off-by: Stephen Finucane <[email protected]>
1 parent 5e2f3b8 commit 80d5962

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

Diff for: .github/workflows/ci.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v4
1515
with:
16-
python-version: "3.12"
16+
python-version: "3.13"
1717
- name: Set up Go
1818
uses: actions/setup-go@v4
1919
with:
@@ -29,7 +29,7 @@ jobs:
2929
matrix:
3030
# NOTE: If you add a version here, don't forget to update the
3131
# '[gh-actions]' section in tox.ini
32-
python: ["3.9", "3.10", "3.11", "3.12"]
32+
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
3333
db: [postgres, mysql, sqlite3]
3434
env:
3535
DATABASE_TYPE: "${{ matrix.db }}"
@@ -105,7 +105,7 @@ jobs:
105105
- name: Set up Python
106106
uses: actions/setup-python@v4
107107
with:
108-
python-version: "3.12"
108+
python-version: "3.13"
109109
- name: Install dependencies
110110
run: python -m pip install tox
111111
- name: Build docs (via tox)
@@ -132,7 +132,7 @@ jobs:
132132
- name: Set up Python
133133
uses: actions/setup-python@v4
134134
with:
135-
python-version: "3.12"
135+
python-version: "3.13"
136136
- name: Build docker-compose service
137137
run: |
138138
docker compose build --build-arg UID=$(id -u) --build-arg GID=$(id -g)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
features:
3+
- |
4+
`Python 3.13 <https://www.python.org/downloads/release/python-3130/>`_ is
5+
now supported.

Diff for: tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.2
3-
envlist = pep8,docs,py{39,310,311}-django42,py{310,311,312}-django{50,51}
3+
envlist = pep8,docs,py{39,310,311}-django42,py{310,311,312}-django{50,51},py313-django51
44

55
[testenv]
66
skip_install = true
@@ -78,3 +78,4 @@ python =
7878
3.10: py310
7979
3.11: py311
8080
3.12: py312
81+
3.13: py313

0 commit comments

Comments
 (0)