You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2017/06/04 14:47:04 UTC

[3/3] incubator-ponymail git commit: certifi needed for ES5 library (especially with HTTPS!)

certifi needed for ES5 library (especially with HTTPS!)


Project: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/commit/5d9f505b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/tree/5d9f505b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/diff/5d9f505b

Branch: refs/heads/master
Commit: 5d9f505b7af520c04ad5c2e1ff9ff828c74a8718
Parents: 1612051
Author: Daniel Gruno <hu...@apache.org>
Authored: Sun Jun 4 16:46:29 2017 +0200
Committer: Daniel Gruno <hu...@apache.org>
Committed: Sun Jun 4 16:46:29 2017 +0200

----------------------------------------------------------------------
 tools/setup.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/5d9f505b/tools/setup.py
----------------------------------------------------------------------
diff --git a/tools/setup.py b/tools/setup.py
index e061e00..8c18659 100755
--- a/tools/setup.py
+++ b/tools/setup.py
@@ -35,19 +35,19 @@ except:
 if dopip and (getpass.getuser() != "root"):
     print("It looks like you need to install some python modules first")
     print("Either run this as root to do so, or run: ")
-    print("pip3 install elasticsearch formatflowed netaddr")
+    print("pip3 install elasticsearch formatflowed netaddr certifi")
     sys.exit(-1)
 
 elif dopip:
     print("Before we get started, we need to install some modules")
     print("Hang on!")
     try:
-        subprocess.check_call(('pip3','install','elasticsearch','formatflowed', 'netaddr'))
+        subprocess.check_call(('pip3','install','elasticsearch','formatflowed', 'netaddr', 'certifi'))
         from elasticsearch import Elasticsearch
     except:
         print("Oh dear, looks like this failed :(")
         print("Please install elasticsearch and formatflowed before you try again:")
-        print("pip install elasticsearch formatflowed netaddr")
+        print("pip install elasticsearch formatflowed netaddr certifi")
         sys.exit(-1)