diff options
| author | James Bennett <ubernostrum@gmail.com> | 2008-12-09 22:39:58 +0000 |
|---|---|---|
| committer | James Bennett <ubernostrum@gmail.com> | 2008-12-09 22:39:58 +0000 |
| commit | adfad3c19340d1a97c0d8c16a563b81b3f87faca (patch) | |
| tree | baf78b8e3d8e967e10a44f565d69fd5cb3c1fbce /docs/faq/install.txt | |
| parent | b4364e099e7e61abeaf8efc09a1641fb37ea0d8f (diff) | |
Fixed #9783; clarified install docs and FAQ to explain that Django does not yet work with Python 3.0.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9628 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/faq/install.txt')
| -rw-r--r-- | docs/faq/install.txt | 42 |
1 files changed, 33 insertions, 9 deletions
diff --git a/docs/faq/install.txt b/docs/faq/install.txt index cf65e7cf58..061505f502 100644 --- a/docs/faq/install.txt +++ b/docs/faq/install.txt @@ -43,16 +43,40 @@ PostgreSQL fans, and MySQL_, `SQLite 3`_, and Oracle_ are also supported. Do I lose anything by using Python 2.3 versus newer Python versions, such as Python 2.5? ---------------------------------------------------------------------------------------- -No, not in the core framework. Django itself is guaranteed to work with any -version of Python from 2.3 and higher. However, some "django.contrib" add-on -components may require a more recent Python release. The django.contrib.gis -component, for example, requires Python 2.4. +Not in the core framework. Currently, Django itself officially +supports any version of Python from 2.3 through 2.6, +inclusive. However, some add-on components may require a more recent +Python version; the ``django.contrib.gis`` component, for example, +requires at least Python 2.4, and third-party applications for use +with Django are, of course, free to set their own version +requirements. -If you use a Python version newer than 2.3, you will, of course, be able to -take advantage of newer Python features in your own code, along with the speed -improvements and other optimizations that have been made to the Python language -itself. But the Django framework itself should work equally well on 2.3 as it -does on 2.4 or 2.5. +Please note, however, that over the next year or two Django will begin +dropping support for older Python versions as part of a migration +which will end with Django running on Python 3.0 (see next question +for details). So if you're just starting out with Python, it's +recommended that you use the latest 2.x release (currently, Python +2.6). This will let you take advantage of the numerous improvements +and optimizations to the Python language since version 2.3, and will +help ease the process of dropping support for older Python versions on +the road to Python 3.0. + +Can I use Django with Python 3.0? +--------------------------------- + +Not at the moment. Python 3.0 introduced a number of +backwards-incompatible changes to the Python language, and although +these changes are generally a good thing for Python's future, it will +be a while before most Python software catches up and is able to run +on Python 3.0. For larger Python-based software like Django, the +transition is expected to take at least a year or two (since it +involves dropping support for older Python releases and so must be +done gradually). + +In the meantime, Python 2.x releases will be supported and provided +with bug fixes and security updates by the Python development team, so +continuing to use a Python 2.x release during the transition should +not present any risk. Do I have to use mod_python? ---------------------------- |
