From b47a5c018f9ad05e5ec187257aa7cd1634f70905 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 8 Apr 2018 19:11:38 +0100 Subject: [PATCH] Remove unused warnings import --- cibuildwheel/__main__.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cibuildwheel/__main__.py b/cibuildwheel/__main__.py index 52e1b0ac..bdc76287 100644 --- a/cibuildwheel/__main__.py +++ b/cibuildwheel/__main__.py @@ -1,5 +1,5 @@ from __future__ import print_function -import argparse, os, subprocess, sys, textwrap, warnings +import argparse, os, subprocess, sys, textwrap import cibuildwheel import cibuildwheel.linux, cibuildwheel.windows, cibuildwheel.macos @@ -25,9 +25,6 @@ def get_option_from_environment(option_name, platform=None): def main(): - # enable deprecation warnings - warnings.filterwarnings("once", ".*", DeprecationWarning) - parser = argparse.ArgumentParser( description='Build wheels for all the platforms.', epilog=('Most options are supplied via environment variables. '