Merge branch '0.3.2' of https://githomelab.ru/pykd/pykd into 0.3.2

This commit is contained in:
Aleksey R 2018-10-02 18:31:13 +03:00
commit 67c66c593c
3 changed files with 8 additions and 3 deletions

View File

@ -7,7 +7,7 @@ This project can help to automate debugging and crash dump analysis using Python
If you want to automate the debugger but dislike the WinDbg built-in script machine syntax it's time to try again using the handy and powerful Python language. Even if you don't want to create your own script, maybe some existing scripts will be of interest to you? If you want to automate the debugger but dislike the WinDbg built-in script machine syntax it's time to try again using the handy and powerful Python language. Even if you don't want to create your own script, maybe some existing scripts will be of interest to you?
## Pykd bootstrapper ## Pykd bootstrapper
[Download](/../wikis/Pykd bootstrapper) Use it to run pykd within windbg. [link](https://githomelab.ru/pykd/pykd-ext)
## Releases: ## Releases:
[Last Release](/../wikis/Last Release) [Last Release](/../wikis/Last Release)

View File

@ -12,3 +12,8 @@ py -3.6 setup.py bdist_zip --plat-name=win32
py -3.6 setup.py bdist_zip --plat-name=win-amd64 py -3.6 setup.py bdist_zip --plat-name=win-amd64
py -3.6 setup.py bdist_wheel --plat-name=win32 --python-tag=cp36 py -3.6 setup.py bdist_wheel --plat-name=win32 --python-tag=cp36
py -3.6 setup.py bdist_wheel --plat-name=win-amd64 --python-tag=cp36 py -3.6 setup.py bdist_wheel --plat-name=win-amd64 --python-tag=cp36
py -3.7 setup.py bdist_zip --plat-name=win32
py -3.7 setup.py bdist_zip --plat-name=win-amd64
py -3.7 setup.py bdist_wheel --plat-name=win32 --python-tag=cp37
py -3.7 setup.py bdist_wheel --plat-name=win-amd64 --python-tag=cp37

View File

@ -8,7 +8,7 @@ import sys
_name = "pykd" _name = "pykd"
_desc = "python windbg extension" _desc = "python windbg extension"
_version = '0.3.3.4' _version = '0.3.4.0'
def getReleaseSrc(): def getReleaseSrc():
return 'Release_%d.%d' % sys.version_info[0:2] return 'Release_%d.%d' % sys.version_info[0:2]