diff options
| author | Tim Graham <timograham@gmail.com> | 2017-02-17 19:45:34 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-09-25 17:11:03 -0400 |
| commit | cfff2af02be40106d4759cc6f8bfa476ce82421c (patch) | |
| tree | 2680ff4040dd83d7b50ca2265e8268e362142476 /docs | |
| parent | a80903b7114c984b5087597e8c34750e7bb44f51 (diff) | |
Fixed #27857 -- Dropped support for Python 3.4.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/intro/contributing.txt | 6 | ||||
| -rw-r--r-- | docs/intro/install.txt | 2 | ||||
| -rw-r--r-- | docs/intro/tutorial01.txt | 2 | ||||
| -rw-r--r-- | docs/ref/applications.txt | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/docs/intro/contributing.txt b/docs/intro/contributing.txt index 764d166631..ceafb6b028 100644 --- a/docs/intro/contributing.txt +++ b/docs/intro/contributing.txt @@ -288,9 +288,9 @@ Once the tests complete, you should be greeted with a message informing you whether the test suite passed or failed. Since you haven't yet made any changes to Django's code, the entire test suite **should** pass. If you get failures or errors make sure you've followed all of the previous steps properly. See -:ref:`running-unit-tests` for more information. If you're using Python 3.5+, -there will be a couple failures related to deprecation warnings that you can -ignore. These failures have since been fixed in Django. +:ref:`running-unit-tests` for more information. There will be a couple failures +related to deprecation warnings that you can ignore. These failures have since +been fixed in Django. Note that the latest Django trunk may not always be stable. When developing against trunk, you can check `Django's continuous integration builds`__ to diff --git a/docs/intro/install.txt b/docs/intro/install.txt index 9861923b37..a0370df3d2 100644 --- a/docs/intro/install.txt +++ b/docs/intro/install.txt @@ -29,7 +29,7 @@ your operating system's package manager. You can verify that Python is installed by typing ``python`` from your shell; you should see something like:: - Python 3.4.x + Python 3.x.y [GCC 4.x] on linux Type "help", "copyright", "credits" or "license" for more information. >>> diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index fca0cca25b..91bf08e66b 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -23,7 +23,7 @@ in a shell prompt (indicated by the $ prefix): If Django is installed, you should see the version of your installation. If it isn't, you'll get an error telling "No module named django". -This tutorial is written for Django |version| and Python 3.4 or later. If the +This tutorial is written for Django |version| and Python 3.5 or later. If the Django version doesn't match, you can refer to the tutorial for your version of Django by using the version switcher at the bottom right corner of this page, or update Django to the newest version. If you are still using Python diff --git a/docs/ref/applications.txt b/docs/ref/applications.txt index 53d11e31e4..35d2118a27 100644 --- a/docs/ref/applications.txt +++ b/docs/ref/applications.txt @@ -192,7 +192,7 @@ Configurable attributes .. attribute:: AppConfig.path Filesystem path to the application directory, e.g. - ``'/usr/lib/python3.4/dist-packages/django/contrib/admin'``. + ``'/usr/lib/pythonX.Y/dist-packages/django/contrib/admin'``. In most cases, Django can automatically detect and set this, but you can also provide an explicit override as a class attribute on your |
