From ea2b25165c2b2b23bf7f3a11704f9d273848f87e Mon Sep 17 00:00:00 2001 From: Anthon van der Neut Date: Sun, 25 Jun 2017 08:22:06 +0200 Subject: change ModuleNotFoundError to ImportError fixes issue #133 Please close this issue if you can confirm it solves the reported problem --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 0ba69be..a0b7f1f 100644 --- a/setup.py +++ b/setup.py @@ -263,7 +263,7 @@ try: _bdist_wheel_available = True -except ModuleNotFoundError: +except ImportError: _bdist_wheel_available = False -- cgit v1.2.1