Commit d0c90ab3 authored by Luke Macken's avatar Luke Macken Committed by GitHub

Merge pull request #63 from DeanF/develop

Added Python35 and Python36 to list of possible versions in windows.
parents bc40e727 2417cf09
......@@ -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
}
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment