From a7a4f69a863f1e67e4c840a5dc568147a2ace1d9 Mon Sep 17 00:00:00 2001 From: DeanF Date: Sat, 6 Aug 2016 15:39:09 -0400 Subject: [PATCH 1/2] Added Python35 and Python36 to list of possible versions --- pyrasite/win/inject_python.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyrasite/win/inject_python.cpp b/pyrasite/win/inject_python.cpp index e5e4597..7726225 100644 --- a/pyrasite/win/inject_python.cpp +++ b/pyrasite/win/inject_python.cpp @@ -182,8 +182,8 @@ int InjectPythonCode(HANDLE hProcess, const char *code, char *moduleName) int InjectPythonCodeToPID(DWORD pid, const char *code) { - char versions[][9] = { "Python34", "Python33", "Python32", "Python31", "Python30", "Python27", "Python26", "Python25", "Python24" }; - unsigned int numVersions = 9; + char versions[][9] = { "Python36", "Python35", "Python34", "Python33", "Python32", "Python31", "Python30", "Python27", "Python26", "Python25", "Python24" }; + unsigned int numVersions = 11; unsigned int i; int retCode = 0; int ret; @@ -262,4 +262,4 @@ int main(int argc, char *argv[]) return 20 + ret; } return 0; -} \ No newline at end of file +} From 2417cf09c63ab9c0277d4755aecf6759c4a6dd4e Mon Sep 17 00:00:00 2001 From: Dean Fenster Date: Mon, 13 Mar 2017 09:10:08 +0200 Subject: [PATCH 2/2] Added versions to tox.ini --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index bd990ff..2782340 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py26, py27, py33 +envlist = py26, py27, py33, py35, py36 [testenv] commands = nosetests