mirror of https://github.com/django/django.git
[3.0.x] Refs #31040 -- Doc'd Python 3.9 compatibility.
Backport of e18156b6c3
from master.
This commit is contained in:
parent
9deb850e23
commit
301bca9394
|
@ -53,8 +53,8 @@ Django version Python versions
|
||||||
1.11 2.7, 3.4, 3.5, 3.6, 3.7 (added in 1.11.17)
|
1.11 2.7, 3.4, 3.5, 3.6, 3.7 (added in 1.11.17)
|
||||||
2.0 3.4, 3.5, 3.6, 3.7
|
2.0 3.4, 3.5, 3.6, 3.7
|
||||||
2.1 3.5, 3.6, 3.7
|
2.1 3.5, 3.6, 3.7
|
||||||
2.2 3.5, 3.6, 3.7, 3.8 (added in 2.2.8)
|
2.2 3.5, 3.6, 3.7, 3.8 (added in 2.2.8), 3.9 (added in 2.2.17)
|
||||||
3.0 3.6, 3.7, 3.8
|
3.0 3.6, 3.7, 3.8, 3.9 (added in 3.0.11)
|
||||||
============== ===============
|
============== ===============
|
||||||
|
|
||||||
For each version of Python, only the latest micro release (A.B.C) is officially
|
For each version of Python, only the latest micro release (A.B.C) is officially
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
===========================
|
||||||
|
Django 2.2.17 release notes
|
||||||
|
===========================
|
||||||
|
|
||||||
|
*Expected November 2, 2020*
|
||||||
|
|
||||||
|
Django 2.2.17 adds compatibility with Python 3.9.
|
|
@ -23,9 +23,9 @@ end in April 2020.
|
||||||
Python compatibility
|
Python compatibility
|
||||||
====================
|
====================
|
||||||
|
|
||||||
Django 2.2 supports Python 3.5, 3.6, 3.7, and 3.8 (as of 2.2.8). We
|
Django 2.2 supports Python 3.5, 3.6, 3.7, 3.8 (as of 2.2.8), and 3.9 (as of
|
||||||
**highly recommend** and only officially support the latest release of each
|
2.2.17). We **highly recommend** and only officially support the latest release
|
||||||
series.
|
of each series.
|
||||||
|
|
||||||
.. _whats-new-2.2:
|
.. _whats-new-2.2:
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
===========================
|
||||||
|
Django 3.0.11 release notes
|
||||||
|
===========================
|
||||||
|
|
||||||
|
*Expected November 2, 2020*
|
||||||
|
|
||||||
|
Django 3.0.11 adds compatibility with Python 3.9.
|
|
@ -19,8 +19,8 @@ project.
|
||||||
Python compatibility
|
Python compatibility
|
||||||
====================
|
====================
|
||||||
|
|
||||||
Django 3.0 supports Python 3.6, 3.7, and 3.8. We **highly recommend** and only
|
Django 3.0 supports Python 3.6, 3.7, 3.8, and 3.9 (as of 3.0.11). We **highly
|
||||||
officially support the latest release of each series.
|
recommend** and only officially support the latest release of each series.
|
||||||
|
|
||||||
The Django 2.2.x series is the last to support Python 3.5.
|
The Django 2.2.x series is the last to support Python 3.5.
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@ versions of the documentation contain the release notes for any later releases.
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
|
|
||||||
|
3.0.11
|
||||||
3.0.10
|
3.0.10
|
||||||
3.0.9
|
3.0.9
|
||||||
3.0.8
|
3.0.8
|
||||||
|
@ -42,6 +43,7 @@ versions of the documentation contain the release notes for any later releases.
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
|
|
||||||
|
2.2.17
|
||||||
2.2.16
|
2.2.16
|
||||||
2.2.15
|
2.2.15
|
||||||
2.2.14
|
2.2.14
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -101,6 +101,7 @@ setup(
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
|
'Programming Language :: Python :: 3.9',
|
||||||
'Programming Language :: Python :: 3 :: Only',
|
'Programming Language :: Python :: 3 :: Only',
|
||||||
'Topic :: Internet :: WWW/HTTP',
|
'Topic :: Internet :: WWW/HTTP',
|
||||||
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -21,7 +21,7 @@ passenv = DJANGO_SETTINGS_MODULE PYTHONPATH HOME DISPLAY
|
||||||
setenv =
|
setenv =
|
||||||
PYTHONDONTWRITEBYTECODE=1
|
PYTHONDONTWRITEBYTECODE=1
|
||||||
deps =
|
deps =
|
||||||
py{3,36,37,38}: -rtests/requirements/py3.txt
|
py{3,36,37,38,39}: -rtests/requirements/py3.txt
|
||||||
postgres: -rtests/requirements/postgres.txt
|
postgres: -rtests/requirements/postgres.txt
|
||||||
mysql: -rtests/requirements/mysql.txt
|
mysql: -rtests/requirements/mysql.txt
|
||||||
oracle: -rtests/requirements/oracle.txt
|
oracle: -rtests/requirements/oracle.txt
|
||||||
|
|
Loading…
Reference in New Issue