From b40422d5590027801e377c538b6df048c14db8ae Mon Sep 17 00:00:00 2001 From: Claudiu Belu Date: Wed, 6 Apr 2016 22:33:56 +0300 Subject: [PATCH] Removes unnecessary Windows requirements The wmi and pywin32 modules are not used anywhere in this project. There is no reason to have them. --- ryu/hooks.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ryu/hooks.py b/ryu/hooks.py index dcb5cc90..d7a2a8dd 100644 --- a/ryu/hooks.py +++ b/ryu/hooks.py @@ -41,8 +41,6 @@ def setup_hook(config): metadata = config['metadata'] if sys.platform == 'win32': requires = metadata.get('requires_dist', '').split('\n') - requires.append('pywin32') - requires.append('wmi') metadata['requires_dist'] = "\n".join(requires) config['metadata'] = metadata