From d58b93c9582004875ec0befeac39961f9c283c0c Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 26 Jun 2011 17:44:49 +0200 Subject: [PATCH] add MANIFEST.in to have the static files included --- MANIFEST.in | 8 ++++++++ xstatic/pkg/jquery/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a4afc84 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,8 @@ +include README.txt +recursive-include xstatic/pkg/jquery * + +global-exclude *.pyc +global-exclude *.pyo +global-exclude *.orig +global-exclude *.rej + diff --git a/xstatic/pkg/jquery/__init__.py b/xstatic/pkg/jquery/__init__.py index 1c7def6..e041b8d 100644 --- a/xstatic/pkg/jquery/__init__.py +++ b/xstatic/pkg/jquery/__init__.py @@ -16,7 +16,7 @@ except ImportError: class JQuery(XStatic): name = 'jquery' # short, all lowercase name display_name = 'jQuery' # official name, upper/lowercase allowed - version = '1.6.1.1' # for simplicity, use same version x.y.z as bundled files + version = '1.6.1.2' # for simplicity, use same version x.y.z as bundled files # additionally we append .b for our build number, so we # can release new builds with fixes for xstatic stuff.