From 140a77d325c4dfb32aefc360d8bd7180c5eb9098 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 8 Jul 2011 00:06:51 +0200 Subject: [PATCH] require XStatic==0.0.1 --- setup.py | 2 +- xstatic/pkg/jquery/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6a1920b..9829f90 100644 --- a/setup.py +++ b/setup.py @@ -23,5 +23,5 @@ setup( namespace_packages=['xstatic', 'xstatic.pkg', ], include_package_data=True, zip_safe=False, - install_requires=['XStatic'], # this is just a MINIMAL support code package + install_requires=['XStatic==0.0.1'], # this is just a MINIMAL support code package ) diff --git a/xstatic/pkg/jquery/__init__.py b/xstatic/pkg/jquery/__init__.py index b3f6e91..a963d08 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.2' # for simplicity, use same version x.y.z as bundled files + version = '1.6.1.3' # 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.