Skip to content

Commit

Permalink
Merge pull request #136 from tumb1er/django-5.0
Browse files Browse the repository at this point in the history
Django-5.0 support
  • Loading branch information
tumb1er authored Jul 17, 2024
2 parents c92534e + 573e083 commit 2baf92c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ authors = [

dependencies = [
# Django Framework and batteries
"Django>=2.2,<4.2",
"Django>=2.2,<5.1",
"django-bitfield~=2.0",
# Images
"Pillow>=8.1.2,<10.0.0",
Expand All @@ -34,6 +34,8 @@ classifiers = [
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Django==4.1
Django==5.0.7
Pillow==9.3.0
django-admin-smoke==0.4.0
django-admin-smoke==0.5.0
dj-inmemorystorage==2.1.0
factory-boy==3.2.1
django-bitfield==2.2.0
10 changes: 4 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tox]
envlist =
{py3.7,py3.8,py3.9,py3.10,py3.11}-django2.2
{py3.7,py3.8,py3.9,py3.10,py3.11}-django3.0
{py3.7,py3.8,py3.9,py3.10,py3.11}-django3.1
{py3.7,py3.8,py3.9,py3.10,py3.11,py3.12}-django3.2
{py3.8,py3.9,py3.10,py3.11,py3.12}-django4.0
{py3.8,py3.9,py3.10,py3.11,py3.12}-django4.1
{py3.8,py3.9,py3.10,py3.11,py3.12}-django4.2
{py3.10,py3.11,py3.12}-django5.0

[gh-actions]
python =
Expand All @@ -26,12 +25,11 @@ basepython =
py3.12: python3.12
deps =
-r requirements.txt
django2.2: Django~=2.2.0
django3.0: Django~=3.0.0
django3.1: Django~=3.1.0
django3.2: Django~=3.2.0
django4.0: Django~=4.0.0
django4.1: Django~=4.1.0
django4.2: Django~=4.2.0
django5.0: Django~=5.0.0

change_dir = tests
commands = python manage.py test

0 comments on commit 2baf92c

Please sign in to comment.