pyasn1 used internaly by rsa, so leave it

This commit is contained in:
Oleksii Shevchuk 2017-04-21 00:01:06 +03:00
parent 5dd9129c89
commit 7be06557d7
1 changed files with 3 additions and 2 deletions

View File

@ -20,7 +20,7 @@ all_dependencies=set(
x.split('.')[0] for x,m in sys_modules \ x.split('.')[0] for x,m in sys_modules \
if not '(built-in)' in str(m) and x != '__main__' if not '(built-in)' in str(m) and x != '__main__'
] + [ ] + [
'Crypto', 'rpyc', 'rsa', 'Crypto', 'rpyc', 'pyasn1', 'rsa',
'encodings.idna', 'stringprep', 'encodings.idna', 'stringprep',
] ]
) )
@ -88,7 +88,8 @@ try:
# Remove various testcases if any # Remove various testcases if any
if any([ '/'+x+'/' in zipname for x in [ if any([ '/'+x+'/' in zipname for x in [
'tests', 'test', 'SelfTest', 'SelfTests', 'examples' 'tests', 'test', 'SelfTest', 'SelfTests', 'examples',
'experimental'
] ]
]): ]):
continue continue