Skip to content

Commit

Permalink
Support Python 3.13, add Django 5.1 trove classifier, and fix Python …
Browse files Browse the repository at this point in the history
…3.7 CI (#543)
  • Loading branch information
johnthagen authored Jan 26, 2025
1 parent caf127e commit ad5e0c9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def get_test_requirements():
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
Expand All @@ -64,6 +65,7 @@ def get_test_requirements():
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: System :: Archiving",
"Topic :: System :: Archiving :: Backup",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37,38,39,310,311,312}-django{32,42,50,51,master},lint,docs,functional
envlist = py{37,38,39,310,311,312,313}-django{32,42,50,51,master},lint,docs,functional

[testenv]
passenv = *
Expand All @@ -23,6 +23,7 @@ python =
3.10: py310-django{32,42,50,51},functional
3.11: py311-django{42,50,51},functional
3.12: py312-django{42,50,51},functional
3.13: py313-django{51},functional

[testenv:lint]
basepython = python
Expand Down

0 comments on commit ad5e0c9

Please sign in to comment.