Package: python-minimal Version: 2.6.6-3 Severity: important Tags: patch
"pycompile" complains when installing the python2.7* modules because the version.py module (/usr/share/python/debpython/version.py) of python-minimal does not mention Version 2.7. Maybe this can be solved by introducing python2.7-minimal as the standard for python-minimal in the experimental distribution. -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (990, 'testing'), (500, 'stable'), (50, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages python-minimal depends on: ii dpkg 1.15.8.5 Debian package management system ii python2.6-minimal 2.6.6-3 A minimal subset of the Python lan Versions of packages python-minimal recommends: ii python 2.6.6-3 interactive high-level object-orie python-minimal suggests no packages. -- no debconf information
--- version.py 2010-10-17 21:40:02.430047253 +0200 +++ version.py.orig 2010-10-17 21:46:26.343047051 +0200 @@ -23,7 +23,7 @@ from os.path import exists from types import GeneratorType -SUPPORTED = [(2, 5), (2, 6), (2, 7)] +SUPPORTED = [(2, 5), (2, 6)] DEFAULT = (2, 6) RANGE_PATTERN = r'(-)?(\d\.\d+)(?:(-)(\d\.\d+)?)?' RANGE_RE = re.compile(RANGE_PATTERN)