From 153ce61b48760b17d7c66473c81ec1f9c1e578e1 Mon Sep 17 00:00:00 2001 From: hpk Date: Tue, 20 Mar 2007 13:10:56 +0100 Subject: [PATCH] [svn r40831] bump version number, fixes --HG-- branch : trunk --- py/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/py/__init__.py b/py/__init__.py index d47677364..f107e1b40 100644 --- a/py/__init__.py +++ b/py/__init__.py @@ -7,17 +7,17 @@ """ from initpkg import initpkg -version = "0.9.0" +version = "0.9.1-alpha" initpkg(__name__, description = "py lib: agile development and test support library", - revision = int('$LastChangedRevision: 40001 $'.split(':')[1][:-1]), - lastchangedate = '$LastChangedDate: 2007-03-06 22:11:12 +0100 (Tue, 06 Mar 2007) $', + revision = int('$LastChangedRevision: 40831 $'.split(':')[1][:-1]), + lastchangedate = '$LastChangedDate: 2007-03-20 13:10:56 +0100 (Tue, 20 Mar 2007) $', version = version, url = "http://codespeak.net/py", - download_url = "http://codespeak.net/download/py/py-%s.tar.gz" %(version,), + download_url = "xxx" # "http://codespeak.net/download/py/py-%s.tar.gz" %(version,), license = "MIT license", - platforms = ['unix', 'linux', 'cygwin'], + platforms = ['unix', 'linux', 'cygwin', 'win32'], author = "holger krekel, Carl Friedrich Bolz, Guido Wesdorp, Maciej Fijalkowski, Armin Rigo & others", author_email = "py-dev@codespeak.net", long_description = globals()['__doc__'],