Skip to content

Commit

Permalink
Add testing against Python 3.13.
Browse files Browse the repository at this point in the history
  • Loading branch information
carltongibson committed Dec 28, 2024
1 parent ccde000 commit e709e5d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"
- name: Ensure latest setuptools
run: |
python -m pip install --upgrade pip setuptools
Expand All @@ -113,7 +113,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"
- name: Ensure latest setuptools
run: |
python -m pip install --upgrade pip setuptools
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Version 25.1 (Unreleased)

* Dropped support for EOL Python 3.8.

* Added testing against Python 3.13.

Version 24.3 (2024-08-02)
-------------------------

Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
envlist =
{py39, py310, py311, py312}-django42,
{py310, py311, py312}-django50,
{py310, py311, py312}-django51,
{py310, py311, py312}-latest,
{py310, py311, py312, py313}-django51,
{py310, py311, py312, py313}-latest,
isort,lint,docs,warnings,
isolated_build = true

Expand Down

0 comments on commit e709e5d

Please sign in to comment.