Skip to content
Snippets Groups Projects
Commit f2e553f7 authored by Matthias Klose's avatar Matthias Klose
Browse files

package version python-defaults-2.3.5-8

parent 3be2c805
No related branches found
No related tags found
No related merge requests found
python-defaults (2.3.5-8) unstable; urgency=low
* Include version 0.4.1.0 of the python policy.
* Fix 'pyversions -i'.
-- Matthias Klose <doko@debian.org> Tue, 13 Jun 2006 09:44:22 +0200
python-defaults (2.3.5-7) unstable; urgency=low
* Point to the draft of the reworked Python policy.
* Fiy 'pyversions -r current' (Raphael Hertzog).
* Fix 'pyversions -r current' (Raphael Hertzog).
-- Matthias Klose <doko@debian.org> Mon, 12 Jun 2006 13:38:41 +0200
......
......@@ -9,7 +9,7 @@ Package: python
Architecture: all
Priority: standard
Depends: python2.3 (>= 2.3.5-1)
Conflicts: python2.3 (<= 2.3.2-6), python2.1 (<= 2.1.2), python-xmlbase, python-csv, python-bz2, python-base, python-central (<< 0.4.8)
Conflicts: python2.3 (<= 2.3.2-6), python2.1 (<= 2.1.2), python-xmlbase, python-csv, python-bz2, python-base, python-central (<< 0.4.11)
Replaces: python2.3 (<= 2.3.2-6), python-xmlbase, python-base
Provides: python-email, python-xmlbase
Suggests: python-doc, python-tk, python-profiler
......@@ -33,7 +33,7 @@ Description: A minimal subset of the Python language (default version)
contained in this package.
.
NOTE: There is no python2.3-minimal package yet, this package will depend
on the python2.4-minimal package after a change of default python version.
on the python2.4-minimal package after a change of the default python version.
Package: python-examples
Architecture: all
......
......@@ -9,7 +9,7 @@ Package: python
Architecture: all
Priority: standard
Depends: @PVER@ (>= @PREVVER@)
Conflicts: python2.3 (<= 2.3.2-6), python2.1 (<= 2.1.2), python-xmlbase, python-csv, python-bz2, python-base, python-central (<< 0.4.8)
Conflicts: python2.3 (<= 2.3.2-6), python2.1 (<= 2.1.2), python-xmlbase, python-csv, python-bz2, python-base, python-central (<< 0.4.11)
Replaces: python2.3 (<= 2.3.2-6), python-xmlbase, python-base
Provides: python-email, python-xmlbase
Suggests: python-doc, python-tk, python-profiler
......@@ -33,7 +33,7 @@ Description: A minimal subset of the Python language (default version)
contained in this package.
.
NOTE: There is no python2.3-minimal package yet, this package will depend
on the python2.4-minimal package after a change of default python version.
on the python2.4-minimal package after a change of the default python version.
Package: python-examples
Architecture: all
......
This diff is collapsed.
......@@ -118,8 +118,10 @@ def requested_versions(vstring, version_only=False):
def installed_versions(version_only=False):
import glob
supported = supported_versions()
versions = [os.path.basename(s)
for s in glob.glob('/usr/bin/python[0-9].[0-9]')]
for s in glob.glob('/usr/bin/python[0-9].[0-9]')
if os.path.basename(s) in supported]
versions.sort()
if version_only:
return [v[6:] for v in versions]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment