mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-03-16 22:10:28 +00:00
Make Django 3.0 support official
This commit is contained in:
parent
c31d426910
commit
110101d96e
6 changed files with 12 additions and 5 deletions
|
|
@ -4,6 +4,7 @@ Changelog
|
||||||
2.8 (xx.xx.xxxx) - IN DEVELOPMENT
|
2.8 (xx.xx.xxxx) - IN DEVELOPMENT
|
||||||
~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
* Django 3.0 support (Matt Westcott, Mads Jensen)
|
||||||
* Removed support for Django 2.0
|
* Removed support for Django 2.0
|
||||||
* Removed leftover Python 2.x compatibility code (Sergey Fedoseev)
|
* Removed leftover Python 2.x compatibility code (Sergey Fedoseev)
|
||||||
* Combine flake8 configurations (Sergey Fedoseev)
|
* Combine flake8 configurations (Sergey Fedoseev)
|
||||||
|
|
|
||||||
|
|
@ -54,11 +54,11 @@ Wagtail is used by NASA, Google, Oxfam, the NHS, Mozilla, MIT, the Red Cross, Sa
|
||||||
|
|
||||||
Wagtail supports:
|
Wagtail supports:
|
||||||
|
|
||||||
* Django 2.0.x, 2.1.x and 2.2.x
|
* Django 2.1.x, 2.2.x and 3.0.x
|
||||||
* Python 3.5, 3.6, 3.7 and 3.8
|
* Python 3.5, 3.6, 3.7 and 3.8
|
||||||
* PostgreSQL, MySQL and SQLite as database backends
|
* PostgreSQL, MySQL and SQLite as database backends
|
||||||
|
|
||||||
Previous versions of Wagtail (1.13 and earlier) additionally supported Python 2.7 and Django 1.x.
|
[Previous versions of Wagtail](https://docs.wagtail.io/en/stable/releases/upgrading.html#compatible-django-python-versions) additionally supported Python 2.7 and Django 1.x.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ Integrating Wagtail into a Django project
|
||||||
|
|
||||||
Wagtail provides the ``wagtail start`` command and project template to get you started with a new Wagtail project as quickly as possible, but it's easy to integrate Wagtail into an existing Django project too.
|
Wagtail provides the ``wagtail start`` command and project template to get you started with a new Wagtail project as quickly as possible, but it's easy to integrate Wagtail into an existing Django project too.
|
||||||
|
|
||||||
Wagtail is currently compatible with Django 2.0, 2.1 and 2.2. First, install the ``wagtail`` package from PyPI:
|
Wagtail is currently compatible with Django 2.1, 2.2 and 3.0. First, install the ``wagtail`` package from PyPI:
|
||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,11 @@ Wagtail 2.8 release notes - IN DEVELOPMENT
|
||||||
What's new
|
What's new
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
Django 3.0 support
|
||||||
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
This release is compatible with Django 3.0. Compatibility fixes were contributed by Matt Westcott and Mads Jensen.
|
||||||
|
|
||||||
|
|
||||||
Other features
|
Other features
|
||||||
~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~
|
||||||
|
|
|
||||||
|
|
@ -131,5 +131,5 @@ The compatible versions of Django and Python for each Wagtail release are:
|
||||||
+-------------------+------------------------------+-----------------------------+
|
+-------------------+------------------------------+-----------------------------+
|
||||||
| 2.7 LTS | 2.0, 2.1, 2.2 | 3.5, 3.6, 3.7, 3.8 |
|
| 2.7 LTS | 2.0, 2.1, 2.2 | 3.5, 3.6, 3.7, 3.8 |
|
||||||
+-------------------+------------------------------+-----------------------------+
|
+-------------------+------------------------------+-----------------------------+
|
||||||
| 2.8 | 2.1, 2.2 | 3.5, 3.6, 3.7, 3.8 |
|
| 2.8 | 2.1, 2.2, 3.0 | 3.5, 3.6, 3.7, 3.8 |
|
||||||
+-------------------+------------------------------+-----------------------------+
|
+-------------------+------------------------------+-----------------------------+
|
||||||
|
|
|
||||||
3
setup.py
3
setup.py
|
|
@ -21,7 +21,7 @@ except ImportError:
|
||||||
|
|
||||||
|
|
||||||
install_requires = [
|
install_requires = [
|
||||||
"Django>=2.0,<2.3",
|
"Django>=2.1,<3.1",
|
||||||
"django-modelcluster>=5.0,<6.0",
|
"django-modelcluster>=5.0,<6.0",
|
||||||
"django-taggit>=1.0,<2.0",
|
"django-taggit>=1.0,<2.0",
|
||||||
"django-treebeard>=4.2.0,<5.0",
|
"django-treebeard>=4.2.0,<5.0",
|
||||||
|
|
@ -100,6 +100,7 @@ https://github.com/wagtail/wagtail/.",
|
||||||
'Framework :: Django',
|
'Framework :: Django',
|
||||||
'Framework :: Django :: 2.1',
|
'Framework :: Django :: 2.1',
|
||||||
'Framework :: Django :: 2.2',
|
'Framework :: Django :: 2.2',
|
||||||
|
'Framework :: Django :: 3.0',
|
||||||
'Framework :: Wagtail',
|
'Framework :: Wagtail',
|
||||||
'Topic :: Internet :: WWW/HTTP :: Site Management',
|
'Topic :: Internet :: WWW/HTTP :: Site Management',
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue