summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Clatworthy <ian.clatworthy@canonical.com>2008-11-13 11:24:23 +1000
committerIan Clatworthy <ian.clatworthy@canonical.com>2008-11-13 11:24:23 +1000
commitb339608cc3ad397fa3b120ea30cd23d2c4751c1b (patch)
treedbbfdc4470c430a04066d05914de94ec44bf47c5
parent6e206fa96ea7d0c25fbab6a2f0605e3fc97aadae (diff)
downloadpython-fastimport-git-b339608cc3ad397fa3b120ea30cd23d2c4751c1b.tar.gz
setup.py no longer requires python2.4
-rw-r--r--NEWS3
-rwxr-xr-xsetup.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 9bdb7aa..a7e2621 100644
--- a/NEWS
+++ b/NEWS
@@ -22,6 +22,9 @@ IN DEVELOPMENT
* hg-fast-export should use binary mode on Windows.
(Alexey Stukalov)
+ * setup.py no longer assumes python2.4.
+ (schickb@gmail.com)
+
* setup.py support fixed.
(Jelmer Vernooij)
diff --git a/setup.py b/setup.py
index 2ff9303..2d825b0 100755
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2.4
+#!/usr/bin/env python
from distutils.core import setup
bzr_plugin_name = 'fastimport'