From 7be06557d70a4141b1be4008f4bedb7af61e47da Mon Sep 17 00:00:00 2001 From: Oleksii Shevchuk Date: Fri, 21 Apr 2017 00:01:06 +0300 Subject: [PATCH] pyasn1 used internaly by rsa, so leave it --- client/build_library_zip.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/build_library_zip.py b/client/build_library_zip.py index fbea766e..b9f719e3 100644 --- a/client/build_library_zip.py +++ b/client/build_library_zip.py @@ -20,7 +20,7 @@ all_dependencies=set( x.split('.')[0] for x,m in sys_modules \ if not '(built-in)' in str(m) and x != '__main__' ] + [ - 'Crypto', 'rpyc', 'rsa', + 'Crypto', 'rpyc', 'pyasn1', 'rsa', 'encodings.idna', 'stringprep', ] ) @@ -88,7 +88,8 @@ try: # Remove various testcases if any if any([ '/'+x+'/' in zipname for x in [ - 'tests', 'test', 'SelfTest', 'SelfTests', 'examples' + 'tests', 'test', 'SelfTest', 'SelfTests', 'examples', + 'experimental' ] ]): continue