summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/faq/install.txt2
-rw-r--r--docs/intro/install.txt6
-rw-r--r--docs/intro/tutorial01.txt2
-rw-r--r--docs/topics/install.txt4
4 files changed, 7 insertions, 7 deletions
diff --git a/docs/faq/install.txt b/docs/faq/install.txt
index 14e7d8b995..a2520d71dd 100644
--- a/docs/faq/install.txt
+++ b/docs/faq/install.txt
@@ -16,7 +16,7 @@ How do I get started?
What are Django's prerequisites?
--------------------------------
-Django requires Python, specifically Python 2.7 or 3.2 and above. Other Python
+Django requires Python, specifically Python 2.7 or 3.3 and above. Other Python
libraries may be required for some uses, but you'll receive an error about it
as they're needed.
diff --git a/docs/intro/install.txt b/docs/intro/install.txt
index 64e07f1d76..410cb8f032 100644
--- a/docs/intro/install.txt
+++ b/docs/intro/install.txt
@@ -9,9 +9,9 @@ that'll work while you walk through the introduction.
Install Python
--------------
-Being a Python Web framework, Django requires Python. It works with Python 2.7,
-3.2, 3.3, or 3.4. All these versions of Python include a lightweight database
-called SQLite_ so you won't need to set up a database just yet.
+Being a Python Web framework, Django requires Python. It works with Python 2.7
+3.3+. All these versions of Python include a lightweight database called
+SQLite_ so you won't need to set up a database just yet.
.. _sqlite: http://sqlite.org/
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 8c9c4a30e7..dc34e8765c 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -22,7 +22,7 @@ tell Django is installed and which version by running the following command:
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.2 or later. If the
+This tutorial is written for Django |version| and Python 3.3 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/topics/install.txt b/docs/topics/install.txt
index 65e55ddbe6..103152bc3e 100644
--- a/docs/topics/install.txt
+++ b/docs/topics/install.txt
@@ -7,8 +7,8 @@ This document will get you up and running with Django.
Install Python
==============
-Being a Python Web framework, Django requires Python. It works with Python 2.7,
-3.2 or 3.3.
+Being a Python Web framework, Django requires Python. It works with Python 2.7
+or 3.3+.
Get the latest version of Python at https://www.python.org/download/ or with
your operating system's package manager.