VER_MAJOR = 2 # The first three must match wxWindows
VER_MINOR = 5
VER_RELEASE = 1
-VER_SUBREL = 1 # wxPython release num for x.y.z release of wxWindows
-VER_FLAGS = "" # release flags, such as prerelease num, unicode, etc.
+VER_SUBREL = 2 # wxPython release num for x.y.z release of wxWindows
+VER_FLAGS = "p" # release flags, such as prerelease num, unicode, etc.
DESCRIPTION = "Cross platform GUI toolkit for Python"
AUTHOR = "Robin Dunn"
# Unconditionally updated since the version string can change based
# on the UNICODE flag
-open('src/__version__.py', 'w').write("""\
+open('wx/__version__.py', 'w').write("""\
# This file was generated by setup.py...
VERSION_STRING = '%(VERSION)s'
SUBREL_VERSION = %(VER_SUBREL)s
VERSION = (MAJOR_VERSION, MINOR_VERSION, RELEASE_VERSION,
- SUBREL_VERSION, '%(VER_FLAGS)s')
+ SUBREL_VERSION, '%(VER_FLAGS)s')
RELEASE_NUMBER = RELEASE_VERSION # for compatibility
""" % globals())
])
copy_file('src/__init__.py', PKGDIR, update=1, verbose=0)
-copy_file('src/__version__.py', PKGDIR, update=1, verbose=0)
# update the license files
+++ /dev/null
-# This file was generated by setup.py...
-
-VERSION_STRING = '2.5.1.1'
-MAJOR_VERSION = 2
-MINOR_VERSION = 5
-RELEASE_VERSION = 1
-SUBREL_VERSION = 1
-
-VERSION = (MAJOR_VERSION, MINOR_VERSION, RELEASE_VERSION,
- SUBREL_VERSION, '')
-
-RELEASE_NUMBER = RELEASE_VERSION # for compatibility