Fixed #25968 -- Changed project/app templates to use a "py-tpl" suffix.

Debian packages unconditionally byte-compile .py files on installation and
do not silence errors by design. Therefore, we need a way of shipping these
invalid .py files without a .py extension but ensuring that when we
template them, they end up as .py.

We don't special-case .py files so that the all the TemplateCommand
command-line options (eg. extra_files and extensions) still work entirely
as expected and it may even be useful for other formats too.
This commit is contained in:
Chris Lamb 2016-01-24 10:06:01 +01:00 committed by Tim Graham
parent 9c43d8252a
commit abc0777b63
20 changed files with 58 additions and 7 deletions

View file

@ -165,8 +165,7 @@ This is the recommended way to install Django.
1. Install pip_. The easiest is to use the `standalone pip installer`_. If your
distribution already has ``pip`` installed, you might need to update it if
it's outdated. If it's outdated, you'll know because installation won't
work. If you're using an old version of setuptools, you might see some
:ref:`harmless SyntaxErrors <syntax-error-old-setuptools-django-19>` also.
work.
2. Take a look at virtualenv_ and virtualenvwrapper_. These tools provide
isolated Python environments, which are more practical than installing