summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2007-10-26 19:52:29 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2007-10-26 19:52:29 +0000
commit7dd2dd08a79e388732ce00e2b5514f15bd6d0f6f (patch)
tree7d5f0d1222481c604803a88c2a0614c488ab08f9 /setup.py
parent6c1c7c9e4f4d47a05f7281d976545d928a1722f2 (diff)
i18n security fix. Details will be posted shortly to the Django mailing lists and the official weblog.
git-svn-id: http://code.djangoproject.com/svn/django/branches/0.96-bugfixes@6607 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 6fd6fab816..9c12dccd7e 100644
--- a/setup.py
+++ b/setup.py
@@ -32,12 +32,9 @@ if len(sys.argv) > 1 and sys.argv[1] == 'bdist_wininst':
for file_info in data_files:
file_info[0] = '/PURELIB/%s' % file_info[0]
-# Dynamically calculate the version based on django.VERSION.
-version = "%d.%d-%s" % (__import__('django').VERSION)
-
setup(
name = "Django",
- version = version,
+ version = "0.96.1",
url = 'http://www.djangoproject.com/',
author = 'Lawrence Journal-World',
author_email = 'holovaty@gmail.com',