(codename Kong, released on September 12th 2009)
authorArmin Ronacher <armin.ronacher@active-4.com>
Sun, 13 Sep 2009 07:23:27 +0000 (00:23 -0700)
committerArmin Ronacher <armin.ronacher@active-4.com>
Sun, 13 Sep 2009 07:23:27 +0000 (00:23 -0700)
--HG--
branch : trunk

CHANGES
docs/intro.rst
setup.cfg
setup.py

diff --git a/CHANGES b/CHANGES
index 380a7c360d05cd33840a528512e7eadc74243667..f4b733311f34acb9277777f77499669231460ddc 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -3,7 +3,7 @@ Jinja2 Changelog
 
 Version 2.2
 -----------
-(codename unknown, release date yet unknown)
+(codename Kong, released on September 12th 2009)
 
 - Include statements can now be marked with ``ignore missing`` to skip
   non existing templates.
index e290655c12e98c444d0661ae9a4be1944c034ad5..a412740b5faea925160b2a0b4d60a1191fa22e37 100644 (file)
@@ -39,7 +39,9 @@ should be installed.
 
 If you don't have a working C compiler and you are trying to install the source
 release you will get a compiler error.  This however can be circumvented by
-passing the ``--without-speedups`` command line argument to the setup script.
+passing the ``--without-speedups`` command line argument to the setup script::
+
+    $ python setup.py install --without-speedups
 
 For more details about that have a look at the :ref:`disable-speedups`
 section below.
@@ -58,8 +60,8 @@ As a Python egg (via easy_install)
 
 You can install the most recent Jinja2 version using `easy_install`_ or `pip`_::
 
-    sudo easy_install Jinja2
-    sudo pip install Jinja2
+    easy_install Jinja2
+    pip install Jinja2
 
 This will install a Jinja2 egg in your Python installation's site-packages
 directory.
@@ -121,7 +123,9 @@ You can disable the speedups extension when installing using the
 
     sudo python setup.py install --without-speedups
 
-You can also pass this parameter to `easy_install` or `pip`.
+You can also pass this parameter to `pip`::
+
+    $ pip install --install-option='--without-speedups' Jinja2
 
 
 Basic API Usage
index f739d8633bb0d6a06ebf7bebf883c122ae69045d..2d74c58f248790e34e482eb07e20ec6c753c9d2d 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,9 +4,3 @@ tag_date = true
 
 [aliases]
 release = egg_info -RDb ''
-
-[nosetests]
-#verbosity=2
-detailed-errors=1
-cover-package=nose
-where=tests
index 439ce9f18c018e522909026426b45a5ea7394fbc..2284f2ebdd881ab63a8cc0735c82a2bc5164d83e 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -47,38 +47,9 @@ from distutils.command.build_ext import build_ext
 from distutils.errors import CCompilerError, DistutilsPlatformError
 
 
-#: don't change the variable and assignment.  the fabfile parses this
-#: file to get the version for deployment from it.
-VERSION = '2.2'
-
-
-data_files = []
-documentation_path = 'docs/_build/html'
-if os.path.exists(documentation_path):
-    documentation_files = []
-    for fn in os.listdir(documentation_path):
-        if not fn.startswith('.'):
-            fn = os.path.join(documentation_path, fn)
-            if os.path.isfile(fn):
-                documentation_files.append(fn)
-    data_files.append(('docs', documentation_files))
-
-
-def get_terminal_width():
-    """Return the current terminal dimensions."""
-    try:
-        from struct import pack, unpack
-        from fcntl import ioctl
-        from termios import TIOCGWINSZ
-        s = pack('HHHH', 0, 0, 0, 0)
-        return unpack('HHHH', ioctl(sys.stdout.fileno(), TIOCGWINSZ, s))[1]
-    except:
-        return 80
-
-
 setup(
     name='Jinja2',
-    version=VERSION,
+    version='2.2',
     url='http://jinja.pocoo.org/',
     license='BSD',
     author='Armin Ronacher',
@@ -86,8 +57,7 @@ setup(
     description='A small but fast and easy to use stand-alone template '
                 'engine written in pure python.',
     long_description=__doc__,
-    # jinja is egg safe. But because we distribute the documentation
-    # in form of html and txt files it's a better idea to extract the files
+    # jinja is egg safe. But we hate eggs
     zip_safe=False,
     classifiers=[
         'Development Status :: 5 - Production/Stable',