You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by jk...@apache.org on 2017/01/28 04:34:02 UTC

thrift git commit: THRIFT-4042 set zip_safe=False in python build to prevent egg ExtractionError Client: Python

Repository: thrift
Updated Branches:
  refs/heads/master 96be8c8d9 -> 988b3e9bd


THRIFT-4042 set zip_safe=False in python build to prevent egg ExtractionError
Client: Python

This closes #1165


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/988b3e9b
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/988b3e9b
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/988b3e9b

Branch: refs/heads/master
Commit: 988b3e9bde9ef687dd09311c9842c8a5bf24e608
Parents: 96be8c8
Author: Chandler May <cj...@gmail.com>
Authored: Fri Jan 27 16:21:40 2017 -0500
Committer: James E. King, III <jk...@apache.org>
Committed: Fri Jan 27 23:33:19 2017 -0500

----------------------------------------------------------------------
 lib/py/setup.py | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/988b3e9b/lib/py/setup.py
----------------------------------------------------------------------
diff --git a/lib/py/setup.py b/lib/py/setup.py
index 99b7172..d065573 100644
--- a/lib/py/setup.py
+++ b/lib/py/setup.py
@@ -117,6 +117,7 @@ def run_setup(with_binary):
               'Topic :: Software Development :: Libraries',
               'Topic :: System :: Networking'
           ],
+          zip_safe=False,
           **extensions
           )