Skip to content
Open
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: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ jobs:

strategy:
matrix:
django: ["django==4.2.26", "django==5.1.14", "django==5.2.8"]
django:
[
"django==4.2.26",
"django==5.1.14",
"django==5.2.8",
"django==6.0rc1",
]

services:
postgres:
Expand Down
3 changes: 2 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ Features:

The project is hosted on [github](https://github.com/mbraak/django-file-form).

Works with Django 4.2, 5.0 and 5.1 Also with Python 3.8 - 3.13
Works with Django 4.2, 5.1, 5.2 and 6.0 Also with Python 3.10 - 3.13

Older versions:

- Django-file-form 3.6.x supports Django 3.2
- Django-file-form 3.5.x supports Django 4.1
- Django-file-form 3.9.x supports Django 5.0
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"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",
"Programming Language :: Python :: Implementation :: CPython",
],
)
2 changes: 1 addition & 1 deletion testproject/requirements_django.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Django>=5.2,<5.3
Django==6.0rc1
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py310-django42,py312-django42,py310-django51,py313-django51,py313-django52
envlist = py310-django42,py312-django42,py310-django51,py313-django51,py313-django52,py314-django6

[testenv]
changedir = {toxinidir}/testproject
Expand All @@ -11,9 +11,11 @@ deps =
django42: Django>=4.2,<4.3
django51: Django>=5.1,<5.2
django52: Django>=5.2,<5.3
django6: Django==6.0rc1
commands =
python -Wd manage.py test django_file_form_example
basepython =
py310: python3.10
py312: python3.12
py313: python3.13
py314: python3.14
Loading