blob: bc688ef8c4ed607a0f243347ef1800c4afcd0353 (
plain)
1
2
3
4
5
6
|
import sys;
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"
|