Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Django 5.0 #748

Merged
merged 12 commits into from
Dec 8, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
django: ["django==3.2.23", "django==4.1.13", "django==4.2.7"]
django: ["django==3.2.23", "django==4.2.7", "django==5.0"]

services:
postgres:
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

**development**

- Issue #748: support Django 5.0

**3.5.4 (28 october 2023)**

- Issue #760: support django storages 1.14
Expand Down
9 changes: 2 additions & 7 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,8 @@ Features:

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

Works with Django 3.2, 4.1-4.2. Also with Python 3.7 - 3.11
Works with Django 3.2, 4.2 and 5.0. Also with Python 3.8 - 3.12

Older versions:

- Django-file-form 3.3.2 supports Django 3.0 and 3.1
- Django-file-form 2.2 supports Django 2.0 and 2.2
- Django-file-form 1.0.1 uses fine uploader for the javascript part
- Django-file-form 0.5.0 supports Django 1.11 and Python 2.

Version 2.0 has changed: see 'Upgrade from version 1.0' below, if you're upgrading from version 1.0 (or lower).
- Django-file-form 3.5.x supports Django 4.1
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"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>=4.2,<4.3
Django>=5.0,<5.1