diff options
Diffstat (limited to 'debian/python-dep')
| -rw-r--r-- | debian/python-dep | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/debian/python-dep b/debian/python-dep index 27ca72ff..bc688ef8 100644 --- a/debian/python-dep +++ b/debian/python-dep @@ -1,3 +1,6 @@ import sys; -print "python:Depends=python (>= %s), python (<< %s)" % (sys.version[:3],float(sys.version[:3])+0.1) +if sys.version[:3] != "1.5": + print "python:Depends=python (>= %s), python (<< %s)" % (sys.version[:3],float(sys.version[:3])+0.1) +else: + print "python:Depends=python-base (>= 1.5) | python1.5" |
