diff --git a/pykd/pykdver.h b/pykd/pykdver.h index f1af072..476f177 100644 --- a/pykd/pykdver.h +++ b/pykd/pykdver.h @@ -2,7 +2,7 @@ #define PYKD_VERSION_MAJOR 0 #define PYKD_VERSION_MINOR 3 #define PYKD_VERSION_SUBVERSION 0 -#define PYKD_VERSION_BUILDNO 28 +#define PYKD_VERSION_BUILDNO 29 #define __VER_STR2__(x) #x #define __VER_STR1__(x) __VER_STR2__(x) diff --git a/setup/setup.py b/setup/setup.py index c6e76f3..ba1bf9e 100644 --- a/setup/setup.py +++ b/setup/setup.py @@ -8,7 +8,7 @@ import zipfile _name = "pykd" _desc = "python windbg extension" -_version = '0.3.0.27' +_version = '0.3.0.29' def makeWheel(args): @@ -91,6 +91,10 @@ def makeZip(args): shutil.copy( os.path.join(pykd_dir, 'pykd.pyd'), os.path.join(package_dir, 'pykd.pyd') ) + dist_dir = os.path.join(os.path.curdir, 'dist') + if not os.path.exists(dist_dir): + os.mkdir(dist_dir) + with zipfile.ZipFile(os.path.join(os.path.curdir, 'dist', zip_name), mode='w' ) as archive: for srcFile in os.listdir(package_dir): print "zipped %s" % (srcFile)