From d43f926cffff7da1e7cafda43b9ccce80e1e6224 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Thu, 17 Jul 2008 23:26:14 +0200 Subject: [PATCH] make -> fab --HG-- branch : trunk --- Makefile | 27 --------------------------- setup.py | 7 ++++++- 2 files changed, 6 insertions(+), 28 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 6622bd1..0000000 --- a/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# -# Jinja Makefile -# ~~~~~~~~~~~~~~ -# -# Shortcuts for various tasks. -# -# :copyright: 2007 by Armin Ronacher. -# :license: BSD, see LICENSE for more details. -# - -test: - @(cd tests; py.test $(TESTS)) - -test-coverage: - @(cd tests; py.test -C $(TESTS)) - -html-documentation: - @(cd docs; make html) - -pdf-documentation: - @(cd docs; make latex; cd _build/latex; make all-pdf) - -webpage: - @(cd ../www; ./generate.py) - -pylint: - @pylint --rcfile scripts/pylintrc jinja diff --git a/setup.py b/setup.py index 8ea41d8..e94b92f 100644 --- a/setup.py +++ b/setup.py @@ -47,6 +47,11 @@ 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.0' + + data_files = [] documentation_path = 'docs/_build/html' if os.path.exists(documentation_path): @@ -96,7 +101,7 @@ available.""" setup( name='Jinja2', - version='2.0rc1', + version=VERSION, url='http://jinja.pocoo.org/', license='BSD', author='Armin Ronacher', -- 2.26.2