Skip to content

Commit ad5e0c9

Browse files
authored
Support Python 3.13, add Django 5.1 trove classifier, and fix Python 3.7 CI (#543)
1 parent caf127e commit ad5e0c9

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ on:
99

1010
jobs:
1111
build:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
strategy:
1414
matrix:
15-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def get_test_requirements():
5252
"Framework :: Django :: 3.2",
5353
"Framework :: Django :: 4.2",
5454
"Framework :: Django :: 5.0",
55+
"Framework :: Django :: 5.1",
5556
"Intended Audience :: Developers",
5657
"Intended Audience :: System Administrators",
5758
"License :: OSI Approved :: BSD License",
@@ -64,6 +65,7 @@ def get_test_requirements():
6465
"Programming Language :: Python :: 3.10",
6566
"Programming Language :: Python :: 3.11",
6667
"Programming Language :: Python :: 3.12",
68+
"Programming Language :: Python :: 3.13",
6769
"Topic :: Database",
6870
"Topic :: System :: Archiving",
6971
"Topic :: System :: Archiving :: Backup",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{37,38,39,310,311,312}-django{32,42,50,51,master},lint,docs,functional
2+
envlist = py{37,38,39,310,311,312,313}-django{32,42,50,51,master},lint,docs,functional
33

44
[testenv]
55
passenv = *
@@ -23,6 +23,7 @@ python =
2323
3.10: py310-django{32,42,50,51},functional
2424
3.11: py311-django{42,50,51},functional
2525
3.12: py312-django{42,50,51},functional
26+
3.13: py313-django{51},functional
2627

2728
[testenv:lint]
2829
basepython = python

0 commit comments

Comments
 (0)