ajwillia-ms pushed a commit to branch edi-0.5. http://git.enlightenment.org/tools/edi.git/commit/?id=94a0923e29ecafcb2bf44594fcb6a55dbdec04fd
commit 94a0923e29ecafcb2bf44594fcb6a55dbdec04fd Author: Andy Williams <[email protected]> Date: Tue May 16 22:43:39 2017 +0100 build: Fix python project detection --- src/lib/edi_build_provider_python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/edi_build_provider_python.c b/src/lib/edi_build_provider_python.c index cb1e2ab..a5b36e5 100644 --- a/src/lib/edi_build_provider_python.c +++ b/src/lib/edi_build_provider_python.c @@ -26,7 +26,7 @@ _relative_path_exists(const char *base, const char *relative) static Eina_Bool _python_project_supported(const char *path) { - return _relative_path_exists(path, "requirements.txt"); + return _relative_path_exists(path, "setup.py"); } static Eina_Bool --
