Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on: [push, pull_request]

jobs:
tox:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
4 changes: 3 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
Unreleased
==========

* Add support for Django 5.2
* Add support for Django 5.2 and 6.0
* Drop support for Python 3.9.
* Add support for Python 3.14.

django-solo-2.4.0
=================
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,20 @@ maintainers = [
{name = "John Hagen", email = "johnthagen@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"django>=4.2",
Expand Down
17 changes: 8 additions & 9 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
# Configure which test environments are run for each Github Actions Python version.
[gh-actions]
python =
3.9: py39-django{42}
3.10: py310-django{42,50}, type-check, lint
3.11: py311-django{42,50,51,52}
3.12: py312-django{42,50,51,52}
3.13: py313-django{42,50,51,52}
3.10: py310-django{42}, type-check, lint
3.11: py311-django{42,52}
3.12: py312-django{42,52,60}
3.13: py313-django{42,52,60}
3.14: py314-django{52,60}

[tox]
envlist =
type-check
lint
py{38,39,310}-django{42,50}
py{311,312,313}-django{42,50,51,52}
py{310,311}-django{42,52}
py{312,313,314}-django{42,52,60}

[testenv]
deps =
django42: Django>=4.2,<4.3
django50: Django>=5.0,<5.1
django51: Django>=5.1,<5.2
django52: Django>=5.2,<5.3
django60: Django>=6.0,<6.1
commands =
{envpython} {toxinidir}/manage.py test solo --settings=solo.tests.settings

Expand Down