Skip to content

Commit 0a7ffef

Browse files
Add explicit support for Python 3.13 (#112)
1 parent 4ff7ba8 commit 0a7ffef

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [windows-latest, macos-latest, ubuntu-latest]
18-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
18+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1919
django-version: ["4.2", "5.0", "5.1"]
2020
exclude:
2121
- django-version: "5.0"
@@ -69,10 +69,10 @@ jobs:
6969
django-version: ["4.2", "5.0", "5.1"]
7070
steps:
7171
- uses: actions/checkout@v4
72-
- name: Set up Python 3.12
72+
- name: Set up Python 3.13
7373
uses: actions/setup-python@v5
7474
with:
75-
python-version: "3.12"
75+
python-version: "3.13"
7676
- uses: actions/cache@v4
7777
with:
7878
path: ~/.cache/pip
@@ -104,10 +104,10 @@ jobs:
104104
django-version: ["4.2", "5.0", "5.1"]
105105
steps:
106106
- uses: actions/checkout@v4
107-
- name: Set up Python 3.12
107+
- name: Set up Python 3.13
108108
uses: actions/setup-python@v5
109109
with:
110-
python-version: "3.12"
110+
python-version: "3.13"
111111
- uses: actions/cache@v4
112112
with:
113113
path: ~/.cache/pip
@@ -138,7 +138,7 @@ jobs:
138138
- name: Set up Python
139139
uses: actions/setup-python@v5
140140
with:
141-
python-version: "3.12"
141+
python-version: "3.13"
142142
- name: Install dependencies
143143
run: |
144144
python -m pip install --upgrade pip build

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.10",
2323
"Programming Language :: Python :: 3.11",
2424
"Programming Language :: Python :: 3.12",
25+
"Programming Language :: Python :: 3.13",
2526
"Programming Language :: Python :: Implementation :: CPython",
2627
"Environment :: Web Environment",
2728
"Framework :: Django",

0 commit comments

Comments
 (0)