Skip to content

Commit

Permalink
Support Django 5.0 and drop EOL Django 4.0 and 4.1 (lazybird#132)
Browse files Browse the repository at this point in the history
* Support Django 5.0

* Drop support for end of life Django 4.0 and 4.1
  • Loading branch information
johnthagen committed Jan 13, 2024
1 parent 08e68bc commit 0c71f74
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Unreleased

* Add support for Python 3.12
* Drop support for Python 3.7
* Add support for Django 5.0
* Drop support for end of life Django 4.0 and 4.1

django-solo-2.1.0
=================
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,8 @@ def get_version(package):
license='Creative Commons Attribution 3.0 Unported',
classifiers=[
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
Expand Down
17 changes: 8 additions & 9 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
# Configure which test environments are run for each Github Actions Python version.
[gh-actions]
python =
3.8: py38-django{32,40,41,42}
3.9: py39-django{32,40,41,42}
3.10: py310-django{32,40,41,42}
3.11: py311-django{40,41,42}
3.12: py312-django{40,41,42}
3.8: py38-django{32,42}
3.9: py39-django{32,42}
3.10: py310-django{32,42,50}
3.11: py311-django{42,50}
3.12: py312-django{42,50}

[tox]
envlist =
py{38,39,310}-django{32,40,41,42}
py{311,312}-django{40,41,42}
py{38,39,310}-django{32,42}
py{311,312}-django{42,50}

[testenv]
deps =
django32: Django>=3.2,<4.0
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
django50: Django>=5.0,<5.1
commands =
{envpython} {toxinidir}/manage.py test solo --settings=solo.tests.settings

Expand Down

0 comments on commit 0c71f74

Please sign in to comment.