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) ...@@ -182,8 +182,8 @@ int InjectPythonCode(HANDLE hProcess, const char *code, char *moduleName)
int InjectPythonCodeToPID(DWORD pid, const char *code) int InjectPythonCodeToPID(DWORD pid, const char *code)
{ {
char versions[][9] = { "Python34", "Python33", "Python32", "Python31", "Python30", "Python27", "Python26", "Python25", "Python24" }; char versions[][9] = { "Python36", "Python35", "Python34", "Python33", "Python32", "Python31", "Python30", "Python27", "Python26", "Python25", "Python24" };
unsigned int numVersions = 9; unsigned int numVersions = 11;
unsigned int i; unsigned int i;
int retCode = 0; int retCode = 0;
int ret; int ret;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# and then run "tox" from this directory. # and then run "tox" from this directory.
[tox] [tox]
envlist = py26, py27, py33 envlist = py26, py27, py33, py35, py36
[testenv] [testenv]
commands = nosetests 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