diff options
author | Claudiu Belu <bclau@users.noreply.github.com> | 2016-04-06 22:33:56 +0300 |
---|---|---|
committer | Claudiu Belu <bclau@users.noreply.github.com> | 2016-04-06 22:33:56 +0300 |
commit | b40422d5590027801e377c538b6df048c14db8ae (patch) | |
tree | 4ef10870a65f8e5c3b3c74ccc88110cd4203700a | |
parent | a5e935887d7f716ecd97ce6e647a86a83edae58f (diff) |
Removes unnecessary Windows requirements
The wmi and pywin32 modules are not used anywhere in this project.
There is no reason to have them.
-rw-r--r-- | ryu/hooks.py | 2 |
1 files changed, 0 insertions, 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 |